public ShiftsController(IEstheticianService estheticians)
 {
     _estheticians = estheticians;
 }
 public EstheticiansController(IEstheticianService estheticians, IAppointmentService appointments)
 {
     _estheticians = estheticians;
     _appointments = appointments;
 }