Example #1
0
 public HomeController(IUserAppServices userappService,
                       IDomainNotificationHandler notification, IAgendamentoAppService service) : base(notification, userappService)
 {
     _service = service;
 }
Example #2
0
 public ResumoProcessosViewComponent(IAgendamentoAppService service)
 {
     _service = service;
 }
Example #3
0
 public AgendamentoController(IAgendamentoAppService agendamentoApp)
 {
     _agendamentoApp = agendamentoApp;
 }
Example #4
0
 public CartoesVisitaViewComponent(IAgendamentoAppService service)
 {
     _service = service;
 }
Example #5
0
 public HomeController(IUsuarioAppService serviceUsuarios, IAgendamentoAppService agendamentoAppService)
 {
     _serviceUsuarios       = serviceUsuarios;
     _agendamentoAppService = agendamentoAppService;
 }
Example #6
0
 public DetalhesResumoProcessoViewComponent(IAgendamentoAppService service)
 {
     _service = service;
 }
 public CalendarioController(IAgendamentoAppService agendamentoAppService)
 {
     this.agendamentoAppService = agendamentoAppService;
 }
 public AgendamentosController(IAgendamentoAppService agendamentoAppService, IClienteAppService clienteAppService)
 {
     this.agendamentoAppService = agendamentoAppService;
     this.clienteAppService     = clienteAppService;
 }