public AccountController(UMAuthentication emAuth)
 {
     _emAuth = emAuth;
 }
 public UserRegistrationController(employeesContext employeeRegistration, Cryptography cryptography, UMAuthentication emAuth)
 {
     _emAuth = emAuth;
     _employeeRegistration = employeeRegistration;
     _cryptography         = cryptography;
 }
 public AccountController(UMAuthentication umAuth)
 {
     _umAuth = umAuth;
 }