Exemplo n.º 1
0
 public UserController(IUserProfileServiceLayer service, IWebSecurityWrapper security, IEmailSender email)
 {
     _service = service;
     _security = security;
     _email = email;
 }
Exemplo n.º 2
0
 public UserController(IUserProfileServiceLayer service, IWebSecurityWrapper security)
 {
     _service = service;
     _security = security;
 }