Example #1
0
 public AlertaIndividualController(IGetAlertaIndividualUserCase getAlertaIndividualUserCase, IGetGestionesUserCase getGestionesUserCase,
                                   IGetReglasAlertaUserCase getReglasAlertaUserCase)
 {
     _getAlertaIndividualUserCase = getAlertaIndividualUserCase;
     _getGestionesUserCase        = getGestionesUserCase;
     _getReglasAlertaUserCase     = getReglasAlertaUserCase;
 }
Example #2
0
 public HistoricoIndividualController(IGetHistoricoIndividualUserCase getHistoricoIndividualUserCase,
                                      IGetCatalogosUserCase getCatalogosUserCase, IGetGestionesUserCase getGestionesUserCase)
 {
     _getHistoricoIndividualUserCase = getHistoricoIndividualUserCase;
     _getCatalogosUserCase           = getCatalogosUserCase;
     _getGestionesUserCase           = getGestionesUserCase;
 }
Example #3
0
 public GetProfileUserCase(IFuncionarioUsuarioReadOnlyRepository funcionarioUsuarioReadOnlyRepository, IRolesUsuarioReadOnlyRepository rolesUsuarioReadOnlyRepository,
                           IGetGestionesUserCase getGestionesUserCase)
 {
     _funcionarioUsuarioReadOnlyRepository = funcionarioUsuarioReadOnlyRepository;
     _rolesUsuarioReadOnlyRepository       = rolesUsuarioReadOnlyRepository;
     _getGestionesUserCase = getGestionesUserCase;
 }
Example #4
0
 public DeclaracionesController(IGetDeclaracionUserCase getDeclaracionUserCase, IGetGestionesUserCase getGestionesUserCase,
                                IUpdateDeclaracionUserCase updateDeclaracionUserCase, ICloneDeclaracionUserCase cloneDeclaracionUserCase)
 {
     _getDeclaracionUserCase    = getDeclaracionUserCase;
     _getGestionesUserCase      = getGestionesUserCase;
     _updateDeclaracionUserCase = updateDeclaracionUserCase;
     _cloneDeclaracionUserCase  = cloneDeclaracionUserCase;
 }
Example #5
0
 public ProcessNotificationQueueUserCase(IGetNotificationQUserCase getNotificationQUserCase, IUpdateNotificationQUserCase updateNotificationQUserCase,
                                         ISendNotificacionUserCase sendNotificacionUserCase, IFuncionarioUsuarioReadOnlyRepository funcionarioUsuarioReadOnlyRepository,
                                         IDeclaracionWriteOnlyRepository declaracionWriteOnlyRepository, IGetGestionesUserCase getGestionesUserCase)
 {
     _getNotificationQUserCase             = getNotificationQUserCase;
     _updateNotificationQUserCase          = updateNotificationQUserCase;
     _sendNotificacionUserCase             = sendNotificacionUserCase;
     _funcionarioUsuarioReadOnlyRepository = funcionarioUsuarioReadOnlyRepository;
     _declaracionWriteOnlyRepository       = declaracionWriteOnlyRepository;
     _getGestionesUserCase = getGestionesUserCase;
 }
Example #6
0
 public HomeController(IGetDeclaracionResumenUserCase getDeclaracionResumenUserCase, IGetProfileUserCase getProfileUserCase, IGetGestionesUserCase getGestionesUserCase)
 {
     _getDeclaracionResumenUserCase = getDeclaracionResumenUserCase;
     _getProfileUserCase            = getProfileUserCase;
     _getGestionesUserCase          = getGestionesUserCase;
 }
Example #7
0
 public DeclaracionController(IGetDeclaracionUserCase getDeclaracionUserCase, IGetGestionesUserCase getGestionesUserCase, IMapper mapper)
 {
     _getDeclaracionUserCase = getDeclaracionUserCase;
     _getGestionesUserCase   = getGestionesUserCase;
     _mapper = mapper;
 }
Example #8
0
 public ReglasAlertaController(IGetReglasAlertaUserCase getReglasAlertaUserCase, ISaveReglasAlertaUserCase saveReglasAlertaUserCase, IGetGestionesUserCase getGestionesUserCase)
 {
     _getReglasAlertaUserCase  = getReglasAlertaUserCase;
     _saveReglasAlertaUserCase = saveReglasAlertaUserCase;
     _getGestionesUserCase     = getGestionesUserCase;
 }
Example #9
0
 public AlertaGeneralController(IGetAlertaGeneralUserCase getAlertaGeneralUserCase, IGetGestionesUserCase getGestionesUserCase)
 {
     _getAlertaGeneralUserCase = getAlertaGeneralUserCase;
     _getGestionesUserCase     = getGestionesUserCase;
 }
Example #10
0
 public EstadoGeneralController(IGetEstadoGeneralUserCase getEstadoGeneralUserCase, IGetCatalogosUserCase getCatalogosUserCase, IGetGestionesUserCase getGestionesUserCase)
 {
     _GetEstadoGeneralUserCase = getEstadoGeneralUserCase;
     _getCatalogosUserCase     = getCatalogosUserCase;
     _getGestionesUserCase     = getGestionesUserCase;
 }
Example #11
0
 public GestionesController(IGetGestionesUserCase getGestionesUserCase, IUpdateGestionesUserCase updateGestionesUserCase, ICreateGestionUserCase createGestionUserCase)
 {
     _getGestionesUserCase    = getGestionesUserCase;
     _updateGestionesUserCase = updateGestionesUserCase;
     _createGestionUserCase   = createGestionUserCase;
 }