public DepartamentoController(IDepartamentoAppService departamentoService)
 {
     _departamentoService = departamentoService;
 }
Пример #2
0
 public DepartamentoController(IDepartamentoAppService service, IUser user) : base(user)
 {
     _service = service;
 }
 public DepartamentoController(IDepartamentoAppService departamentoApp)
 {
     _departamentoApp = departamentoApp;
 }