public UsuarioController(IBaseService <Usuario> service, ITrocaSenha trocaSenha)
 {
     _service    = service;
     _trocaSenha = trocaSenha;
 }
Example #2
0
 public UsuarioController(IBaseService <Usuario> service, ILogin login, ITrocaSenha senhaService)
 {
     this.service      = service;
     this.login        = login;
     this.senhaService = senhaService;
 }
 public UsuarioController(IBaseService<Usuario> service, ITrocaSenha trocaSenha)
 {
     _service = service;
     _trocaSenha = trocaSenha;
 }