using Yavsc.Models; using Yavsc.Models.Haircut; using Microsoft.AspNet.Authorization; using Yavsc.Controllers.Generic; namespace Yavsc.Controllers { [Authorize(Roles="Performer")] public class BrusherProfileController : SettingsController { public BrusherProfileController(ApplicationDbContext context) : base(context) { } } }