Ejemplo n.º 1
0
 public AppAssigneeController(AppAssigneeService service, IConfiguration configuration,
                              ISearchFilterSettingsService filterSettingsService, IEntityStateHelper entityStateHelper)
     : base(service.DataService, configuration, filterSettingsService)
 {
     _service           = service;
     _entityStateHelper = entityStateHelper;
 }
Ejemplo n.º 2
0
 public EDocumentController(ICommonDataService dataService, IUserInfoService userInfoService, IEntityStateHelper entityStateHelper, IObjectMapper objectMapper)
     : base()
 {
     _dataService       = dataService;
     _entityStateHelper = entityStateHelper;
     _objectMapper      = objectMapper;
 }
Ejemplo n.º 3
0
 public PrlAppAltController(ICommonDataService commonDataService, IConfiguration configuration, ISearchFilterSettingsService filterSettingsService,
                            IPrlApplicationAltService prlApplicationAltService, IEntityStateHelper entityStateHelper)
     : base(commonDataService, configuration, filterSettingsService)
 {
     _commonDataService        = commonDataService;
     _prlApplicationAltService = prlApplicationAltService;
     _entityStateHelper        = entityStateHelper;
 }
 public PrlApplicationProcessService(ICommonDataService dataService, IObjectMapper objectMapper,
                                     IEntityStateHelper entityStateHelper, LimsExchangeService limsExchangeService)
 {
     _dataService         = dataService;
     _objectMapper        = objectMapper;
     _entityStateHelper   = entityStateHelper;
     _limsExchangeService = limsExchangeService;
 }
Ejemplo n.º 5
0
 public ImlProcessingController(ICommonDataService commonDataService, ImlApplicationService imlApplicationService, BackOfficeUserService backOfficeUserService, ImlApplicationProcessService imlAppProcessService, IEntityStateHelper entityStateHelper)
 {
     _commonDataService     = commonDataService;
     _imlApplicationService = imlApplicationService;
     _backOfficeUserService = backOfficeUserService;
     _imlAppProcessService  = imlAppProcessService;
     _entityStateHelper     = entityStateHelper;
 }
Ejemplo n.º 6
0
 public ImlMedicineController(IConfiguration configuration, ISearchFilterSettingsService filterSettingsService, ImlMedicineService medicineService, IEntityStateHelper entityStateHelper, IObjectMapper mapper, IImlLicenseService imlLicenseService)
     : base(medicineService.DataService, configuration, filterSettingsService)
 {
     _configuration     = configuration;
     _medicineService   = medicineService;
     _entityStateHelper = entityStateHelper;
     _mapper            = mapper;
     _imlLicenseService = imlLicenseService;
 }
Ejemplo n.º 7
0
 public BranchController(ICommonDataService dataService, IOperationFormListService formListService,
                         IBranchService branchService, IAtuAddressService atuAddressService, IEntityStateHelper entityStateHelper)
 {
     _dataService       = dataService;
     _formListService   = formListService;
     _branchService     = branchService;
     _atuAddressService = atuAddressService;
     _entityStateHelper = entityStateHelper;
 }
Ejemplo n.º 8
0
        // private readonly PrlLicense _prlLicense;


        public PrlProcessingController(IPrlApplicationService prlApplicationService,/* PrlLicense prlLicense,*/
                                       PrlApplicationProcessService prlAppProcessService, BackOfficeUserService backOfficeUserService, IEntityStateHelper entityStateHelper)
        {
            _prlApplicationService = prlApplicationService;
            _prlAppProcessService  = prlAppProcessService;
            _backOfficeUserService = backOfficeUserService;
            _entityStateHelper     = entityStateHelper;
            _commonDataService     = _prlApplicationService.DataService;
            //  _prlLicense = prlLicense;
        }
 public TrlApplicationProcessService(ICommonDataService dataService,
                                     LimsExchangeService limsExchangeService,
                                     IObjectMapper objectMapper,
                                     IEntityStateHelper entityStateHelper,
                                     MigrationDbContext context)
 {
     _dataService         = dataService;
     _limsExchangeService = limsExchangeService;
     _objectMapper        = objectMapper;
     _entityStateHelper   = entityStateHelper;
     _context             = context;
 }
Ejemplo n.º 10
0
 public ApplicationController(ICommonDataService dataService, IConfiguration configuration, ISearchFilterSettingsService searchFilterSettingsService, IEntityStateHelper entityStateHelper, ImlApplicationService imlApplicationService, ApplicationService <ImlApplication> applicationService, IAtuAddressService atuAddressService, BackOfficeUserService backOfficeUserService, ImlApplicationProcessService imlApplicationProcessService, IImlLicenseService imlLicenseService, IConverter converter, ImlApplicationService imlAppService) : base(dataService, configuration, searchFilterSettingsService)
 {
     _configuration                = configuration;
     _entityStateHelper            = entityStateHelper;
     _imlApplicationService        = imlApplicationService;
     _applicationService           = applicationService;
     _atuAddressService            = atuAddressService;
     _backOfficeUserService        = backOfficeUserService;
     _imlApplicationProcessService = imlApplicationProcessService;
     _imlLicenseService            = imlLicenseService;
     _converter     = converter;
     _imlAppService = imlAppService;
 }
Ejemplo n.º 11
0
 public ImlAppController(IConfiguration configuration, ISearchFilterSettingsService filterSettingsService,
                         IEntityStateHelper entityStateHelper, ImlApplicationService service, IAtuAddressService atuAddressService,
                         ApplicationService <ImlApplication> applicationService, INotificationService notificaticationService)
     : base(service.DataService, configuration,
            filterSettingsService)
 {
     _configuration           = configuration;
     _entityStateHelper       = entityStateHelper;
     _service                 = service;
     _atuAddressService       = atuAddressService;
     _applicationService      = applicationService;
     _notificaticationService = notificaticationService;
 }
Ejemplo n.º 12
0
 public PrlAppController(IUserInfoService userInfoService, ICommonDataService dataService,
                         IPrlApplicationService prlApplicationService, IConverter converter, PrlApplicationProcessService applicationProcessService,
                         IPrlReportService prlReportService, IAtuAddressService atuAddressService, IEntityStateHelper entityStateHelper,
                         INotificationService notificationService, LimsExchangeService limsExchangeService, ApplicationService <PrlApplication> applicationService)
     : base()
 {
     _userInfo                  = userInfoService.GetCurrentUserInfo();
     _dataService               = dataService;
     _prlApplicationService     = prlApplicationService;
     _converter                 = converter;
     _applicationProcessService = applicationProcessService;
     _atuAddressService         = atuAddressService;
     _entityStateHelper         = entityStateHelper;
     _prlReportService          = prlReportService;
     _notificationService       = notificationService;
     _limsExchangeService       = limsExchangeService;
     _applicationService        = applicationService;
 }
Ejemplo n.º 13
0
 public ImlAppAltController(ICommonDataService dataService, IConfiguration configuration, ISearchFilterSettingsService searchFilterSettingsService, ICommonDataService commonDataService, IEntityStateHelper entityStateHelper, ImlApplicationAltService imlApplicationAltService) : base(dataService, configuration, searchFilterSettingsService)
 {
     _commonDataService        = commonDataService;
     _entityStateHelper        = entityStateHelper;
     _imlApplicationAltService = imlApplicationAltService;
 }
Ejemplo n.º 14
0
 public PrlContractorController(ICommonDataService dataService, IEntityStateHelper entityStateHelper)
     : base()
 {
     _dataService       = dataService;
     _entityStateHelper = entityStateHelper;
 }