示例#1
0
 public DeliveryItemController(
     IDeliveryItemService _deliveryItemService,
     IWorkingDaysService _workingDaysService,
     IMobileFileService _mobileFileService)
 {
     deliveryItemService = _deliveryItemService;
     workingDaysService  = _workingDaysService;
     mobileFileService   = _mobileFileService;
 }
示例#2
0
 public DeliveryItemOperController(
     IDeliveryItemOperService _service,
     IDeliveryItemService _itemService,
     ICommonService _commonService,
     INomenclatureService _nomService,
     IConfiguration _configuration,
     IWorkingDaysService _workingDaysService)
 {
     service            = _service;
     itemService        = _itemService;
     commonService      = _commonService;
     nomService         = _nomService;
     configuration      = _configuration;
     workingDaysService = _workingDaysService;
 }
示例#3
0
 public CaseDeadlineService(
     ILogger <CaseDeadline> _logger,
     IRepository _repo,
     IUserContext _userContext,
     IUrlHelper _urlHelper,
     IWorkNotificationService _workNotificationService,
     IWorkingDaysService _workingDaysService,
     INomenclatureService _nomService)
 {
     logger                  = _logger;
     repo                    = _repo;
     userContext             = _userContext;
     urlHelper               = _urlHelper;
     workNotificationService = _workNotificationService;
     workingDaysService      = _workingDaysService;
     nomService              = _nomService;
 }