public CompaniesController(ICompanyProfileServiceLayer service, IWebSecurityWrapper security)
 {
     _service = service;
     _security = security;
 }
 public CompanyController(ICompanyProfileServiceLayer service)
 {
     _service = service;
 }
 public CompanyController(ICompanyProfileServiceLayer serviceLayer, IWebSecurityWrapper security, IEmailSender email)
 {
     _security = security;
     _serviceLayer = serviceLayer;
     _email = email;
 }