public StudentsController(IStudentsServices studentServices, IEmail email, IEncryption encryption, IHoursServices hoursServices)
 {
     _studentsServices = studentServices;
     _email            = email;
     _encryption       = encryption;
     _hoursServices    = hoursServices;
 }
Esempio n. 2
0
 public HoursController(IHoursServices hoursServices)
 {
     _hoursServices = hoursServices;
 }