yavsc/Yavsc/Controllers/BrusherProfileController.cs

17 lines
403 B
C#
Raw Normal View History

2017-02-28 14:01:24 +01:00
using Yavsc.Models;
using Yavsc.Models.Haircut;
using Microsoft.AspNet.Authorization;
2017-03-06 01:30:02 +01:00
using Yavsc.Controllers.Generic;
2017-02-28 14:01:24 +01:00
namespace Yavsc.Controllers
{
[Authorize(Roles="Performer")]
2017-03-06 01:30:02 +01:00
public class BrusherProfileController : SettingsController<BrusherProfile>
2017-02-28 14:01:24 +01:00
{
2017-03-06 01:30:02 +01:00
public BrusherProfileController(ApplicationDbContext context) : base(context)
2017-02-28 14:01:24 +01:00
{
}
}
}