Beispiel #1
0
 public AttachmentTypesController(
     IAttachmentTypeService attachmentTypeService,
     IResponseDTO response,
     IHttpContextAccessor httpContextAccessor) : base(response, httpContextAccessor)
 {
     _attachmentTypeService = attachmentTypeService;
 }
 public AttachmentTypeController(IAttachmentTypeService attachmentTypeService,
                                 IUserService userService,
                                 IExceptionService exceptionService,
                                 IHostingEnvironment environment,
                                 IAttachmentService attachmentService,
                                 IMemoryCache memoryCache,
                                 IMapper mapper) : base(userService, exceptionService, environment, attachmentTypeService, attachmentService, memoryCache)
 {
     _mapper = mapper;
 }
Beispiel #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;
 }
Beispiel #4
0
 public EntityBaseController(IUserService userService,
                             IExceptionService exceptionService,
                             IHostingEnvironment environment,
                             IAttachmentTypeService attachmentTypeService,
                             IAttachmentService attachmentService,
                             IMemoryCache memorycache) : base(userService, exceptionService)
 {
     AttachmentTypeService = attachmentTypeService;
     AttachmentService     = attachmentService;
     MemoryCache           = memorycache;
     Environment           = environment;
     _entityTypeName       = typeof(T).Name.ToLower().Replace("createupdateviewmodel", "");
 }
Beispiel #5
0
 public DeliveryController(IUserService userService,
                           IExceptionService exceptionService,
                           IHostingEnvironment hostingEnvironment,
                           IAttachmentTypeService attachmentTypeService,
                           IAttachmentService attachmentService,
                           IMemoryCache memoryCache,
                           IDeliveryService deliveryService,
                           ISupplierService supplierService,
                           IArticleService articleService,
                           ILocationService locationService,
                           IMapper mapper) : base(userService, exceptionService, hostingEnvironment, attachmentTypeService, attachmentService, memoryCache)
 {
     _deliveryService = deliveryService;
     _locationService = locationService;
     _supplierService = supplierService;
     _mapper          = mapper;
 }