public PasswordChangeController(IEmployeeRepo repo, IClientContactInfoRepo crepo, IPasswordTools tools, IComMail mail)
 {
     _repo    = repo;
     _tools   = tools;
     _comMail = mail;
     _crepo   = crepo;
 }
 public ClientContactController(IClientContactInfoRepo clientContact)
 {
     _clientContact = clientContact;
 }