public DeliveryItemController( IDeliveryItemService _deliveryItemService, IWorkingDaysService _workingDaysService, IMobileFileService _mobileFileService) { deliveryItemService = _deliveryItemService; workingDaysService = _workingDaysService; mobileFileService = _mobileFileService; }
public MobileFileService( ILogger <MobileFileService> _logger, IRepository _repo, IDeliveryItemService _deliveryItemService) { logger = _logger; repo = _repo; deliveryItemService = _deliveryItemService; }
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; }
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; }
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; }
public DeliveryItemsTableViewComponent(IDeliveryItemService deliveryItemService, IMapper mapper) { _deliveryItemService = deliveryItemService; _mapper = mapper; }