public AccountApiController(IUserService userService, IMessageService messageService, IMapper mapper, IPriceTresholdService priceTresholdService)
 {
     _userService          = userService;
     _messageService       = messageService;
     _mapper               = mapper;
     _priceTresholdService = priceTresholdService;
 }
Пример #2
0
 public AdminPriceTresholdController(IPriceTresholdService entityService, IMapper mapper) : base(entityService, mapper)
 {
     _entityService = entityService;
     _mapper        = mapper;
 }
Пример #3
0
 public ShopController(IPriceTresholdService priceTresholdService, IMapper mapper, IOrderService orderService)
 {
     _priceTresholdService = priceTresholdService;
     _mapper       = mapper;
     _orderService = orderService;
 }