Ejemplo n.º 1
0
 public HomeController(IUserAppServices userappService,
                       IDomainNotificationHandler notification, IAgendamentoAppService service) : base(notification, userappService)
 {
     _service = service;
 }
Ejemplo n.º 2
0
 public ResumoProcessosViewComponent(IAgendamentoAppService service)
 {
     _service = service;
 }
Ejemplo n.º 3
0
 public AgendamentoController(IAgendamentoAppService agendamentoApp)
 {
     _agendamentoApp = agendamentoApp;
 }
Ejemplo n.º 4
0
 public CartoesVisitaViewComponent(IAgendamentoAppService service)
 {
     _service = service;
 }
Ejemplo n.º 5
0
 public HomeController(IUsuarioAppService serviceUsuarios, IAgendamentoAppService agendamentoAppService)
 {
     _serviceUsuarios       = serviceUsuarios;
     _agendamentoAppService = agendamentoAppService;
 }
Ejemplo n.º 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;
 }