2018-05-04 13:56:22 +02:00
|
|
|
using Yavsc.Models;
|
|
|
|
|
using Yavsc.Models.Haircut;
|
2023-03-19 17:57:55 +00:00
|
|
|
using Microsoft.AspNetCore.Authorization;
|
2018-05-04 13:56:22 +02:00
|
|
|
using Yavsc.Controllers.Generic;
|
|
|
|
|
|
|
|
|
|
namespace Yavsc.Controllers
|
|
|
|
|
{
|
2025-08-18 11:27:13 +01:00
|
|
|
[Authorize("Performer")]
|
2018-05-04 13:56:22 +02:00
|
|
|
public class BrusherProfileController : SettingsController<BrusherProfile>
|
|
|
|
|
{
|
|
|
|
|
public BrusherProfileController(ApplicationDbContext context) : base(context)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|