コード例 #1
0
 public AppAssigneeController(AppAssigneeService service, IConfiguration configuration,
                              ISearchFilterSettingsService filterSettingsService, IEntityStateHelper entityStateHelper)
     : base(service.DataService, configuration, filterSettingsService)
 {
     _service           = service;
     _entityStateHelper = entityStateHelper;
 }
コード例 #2
0
ファイル: ImlReportService.cs プロジェクト: WildGenie/diklz
 public ImlReportService(ICommonDataService dataService, IUserInfoService userInfoService,
                         AppAssigneeService assigneeService, IObjectMapper objectMapper,
                         IOperationFormListService formListService, IImlLicenseService licservice)
 {
     _dataService     = dataService;
     _userInfoService = userInfoService;
     _assigneeService = assigneeService;
     _objectMapper    = objectMapper;
     _formListService = formListService;
     _licservice      = licservice;
     path             = System.IO.Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
 }
コード例 #3
0
 public MessageTypesController(ICommonDataService DataService, IConfiguration configuration, ISearchFilterSettingsService filterSettingsService, IConverter converter, IMgsReportService msgReportService,
                               MessageService messageService, IObjectMapper objectMapper, IAtuAddressService atuAddressService, LicenseService licenseService, AppAssigneeService appAssigneeService)
     : base(DataService, configuration, filterSettingsService)
 {
     _messageService     = messageService;
     _objectMapper       = objectMapper;
     _converter          = converter;
     _msgReportService   = msgReportService;
     _atuAddressService  = atuAddressService;
     _licenseService     = licenseService;
     _appAssigneeService = appAssigneeService;
     _configuration      = configuration;
 }
コード例 #4
0
 public DevController(LimsExchangeService limsExchangeService, ICommonDataService dataService,
                      IPrlApplicationService prlApplicationService, IBranchService branchService,
                      AppAssigneeService assigneeService, IUserInfoService userInfoService, ApplicationDbContext context, ImlApplicationService imlApplicationService,
                      TrlApplicationService trlApplicationService)
 {
     _limsExchangeService   = limsExchangeService;
     _dataService           = dataService;
     _prlApplicationService = prlApplicationService;
     _branchService         = branchService;
     _assigneeService       = assigneeService;
     _userInfoService       = userInfoService;
     _context = context;
     _imlApplicationService = imlApplicationService;
     _trlApplicationService = trlApplicationService;
 }
コード例 #5
0
 public MessageTypesController(ICommonDataService DataService, IConfiguration configuration, ISearchFilterSettingsService filterSettingsService, IMgsReportService msgReportService, IConverter converter,
                               IObjectMapper objectMapper, MessageService messageService, IAtuAddressService atuAddressService, ICommonDataService commonDataService, BackOfficeUserService backOfficeUserService, LicenseService licenseService, IPrlLicenseService prlLicenseService, IImlLicenseService imlLicenseService, ITrlLicenseService trlLicenseService, AppAssigneeService appAssigneeService)
     : base(DataService, configuration, filterSettingsService)
 {
     _objectMapper          = objectMapper;
     _messageService        = messageService;
     _converter             = converter;
     _msgReportService      = msgReportService;
     _atuAddressService     = atuAddressService;
     _commonDataService     = commonDataService;
     _backOfficeUserService = backOfficeUserService;
     _licenseService        = licenseService;
     _prlLicenseService     = prlLicenseService;
     _imlLicenseService     = imlLicenseService;
     _trlLicenseService     = trlLicenseService;
     _appAssigneeService    = appAssigneeService;
 }