yavsc/Yavsc/Controllers/Haircut/BrusherProfileController.cs

19 lines
460 B
C#

using Yavsc.Models;
using Yavsc.Models.Haircut;
using Microsoft.AspNet.Authorization;
8 years ago
using Yavsc.Controllers.Generic;
7 years ago
using Yavsc.Services;
namespace Yavsc.Controllers
{
[Authorize(Roles="Performer")]
8 years ago
public class BrusherProfileController : SettingsController<BrusherProfile>
{
7 years ago
public BrusherProfileController(ApplicationDbContext context, IBillingService billing) : base(context, billing)
{
}
}
}