Exemple #1
0
 public DeliveryItemController(
     IDeliveryItemService _deliveryItemService,
     IWorkingDaysService _workingDaysService,
     IMobileFileService _mobileFileService)
 {
     deliveryItemService = _deliveryItemService;
     workingDaysService  = _workingDaysService;
     mobileFileService   = _mobileFileService;
 }
Exemple #2
0
 public MobileFileService(
     ILogger <MobileFileService> _logger,
     IRepository _repo,
     IDeliveryItemService _deliveryItemService)
 {
     logger = _logger;
     repo   = _repo;
     deliveryItemService = _deliveryItemService;
 }
Exemple #3
0
 public DeliveryItemController(IUserService userService,
                               IExceptionService exceptionService,
                               IHostingEnvironment environment,
                               IAttachmentTypeService attachmentTypeService,
                               IDeliveryItemService deliveryItemService,
                               IAttachmentService attachmentService,
                               IMemoryCache memoryCache,
                               IMapper mapper) : base(userService, exceptionService, environment, attachmentTypeService, attachmentService, memoryCache)
 {
     _deliveryItemService = deliveryItemService;
     _mapper = mapper;
 }
Exemple #4
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;
 }
Exemple #5
0
 public DeliveryItemController(
     IDeliveryItemService _deliveryItemService,
     ICommonService _commonService,
     ICompositeViewEngine _viewEngine,
     INomenclatureService _nomService,
     IDeliveryAreaService _areaService,
     IDeliveryAreaAddressService _deliveryAreaAddressService,
     ICourtLawUnitService _courtLawUnitService,
     ICaseNotificationService _notificationService,
     ICdnService _cdnService
     )
 {
     service       = _deliveryItemService;
     commonService = _commonService;
     viewEngine    = _viewEngine;
     nomService    = _nomService;
     areaService   = _areaService;
     deliveryAreaAddressService = _deliveryAreaAddressService;
     courtLawUnitService        = _courtLawUnitService;
     notificationService        = _notificationService;
     cdnService = _cdnService;
 }
Exemple #6
0
 public DeliveryItemsTableViewComponent(IDeliveryItemService deliveryItemService, IMapper mapper)
 {
     _deliveryItemService = deliveryItemService;
     _mapper = mapper;
 }