public AgendaController(IAgendaAppService baseApps, ILogAppService logApps, IUsuarioAppService usuApps, ICategoriaAgendaAppService caApps)
 {
     baseApp = baseApps;
     logApp  = logApps;
     usuApp  = usuApps;
     caApp   = caApps;
 }
 public AgendaController(INotificationHandler <DomainNotification> notifications, IAgendaAppService agendaAppService, INovoMatchAppService novoMatchAppService, IUserAppService userAppService, INotaAppService notaAppService)
     : base(notifications)
 {
     _agendaAppService    = agendaAppService;
     _novoMatchAppService = novoMatchAppService;
     _userAppService      = userAppService;
     _notaAppService      = notaAppService;
 }
 public AgendaController(IAgendaAppService agendaApp, IClienteAppService clienteApp, IServicoAppService servicoApp, IColaboradorAppService colaboradorApp, IHorarioAppService horarioApp)
 {
     _agendaApp      = agendaApp;
     _clienteApp     = clienteApp;
     _servicoApp     = servicoApp;
     _colaboradorApp = colaboradorApp;
     _horarioApp     = horarioApp;
 }
 public BaseAdminController(IUsuarioAppService baseApps, ILogAppService logApps, INoticiaAppService notApps, ITarefaAppService tarApps, INotificacaoAppService notfApps, IUsuarioAppService usuApps, IAgendaAppService ageApps, IConfiguracaoAppService confApps, ITipoPessoaAppService tpApps)
 {
     baseApp = baseApps;
     logApp  = logApps;
     notiApp = notApps;
     tarApp  = tarApps;
     notfApp = notfApps;
     usuApp  = usuApps;
     ageApp  = ageApps;
     confApp = confApps;
     tpApp   = tpApps;
 }
 public BaseAdminController(IUsuarioAppService baseApps, ILogAppService logApps, INoticiaAppService notApps, ITarefaAppService tarApps, INotificacaoAppService notfApps, ICargoAppService carApps, IUsuarioAppService usuApps, IFilialAppService filApps, ITipoContribuinteAppService tcoApps, IUnidadeAppService uniApps, IAgendaAppService ageApps, ITipoTagAppService tagApps, IConfiguracaoAppService confApps, ITipoPessoaAppService tpApps, IRegimeTributarioAppService rtApps)
 {
     baseApp = baseApps;
     logApp  = logApps;
     notiApp = notApps;
     tarApp  = tarApps;
     notfApp = notfApps;
     carApp  = carApps;
     usuApp  = usuApps;
     filApp  = filApps;
     tcoApp  = tcoApps;
     uniApp  = uniApps;
     ageApp  = ageApps;
     tagApp  = tagApps;
     confApp = confApps;
     tpApp   = tpApps;
     rtApp   = rtApps;
 }
Пример #6
0
 public AgendaController(IAgendaAppService servicoAgenda, IClienteAppService servicoCliente)
 {
     this.servicoAgenda  = servicoAgenda;
     this.servicoCliente = servicoCliente;
 }
 public EventosController(INotificationHandler <DomainNotification> notifications, IAgendaAppService agendaAppService, INotaAppService notaAppService)
     : base(notifications)
 {
     _agendaAppService = agendaAppService;
     _notaAppService   = notaAppService;
 }
Пример #8
0
 public ClientesController(INotificador notificador, IClienteAppService clienteAppService, IAgendaAppService agendaAppService) : base(notificador)
 {
     _clienteAppService = clienteAppService;
     _agendaAppService  = agendaAppService;
 }
 public AgendaController(IAgendaAppService appService)
 {
     this.appService = appService;
 }