예제 #1
0
 public IngredientsIngredientTypesService(natureBeautyContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
예제 #2
0
 public InputsService(natureBeautyContext context, IMapper mapper) : base(context, mapper)
 {
 }
예제 #3
0
 public UsersService(natureBeautyContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public OutputProductsService(natureBeautyContext context, IMapper mapper) : base(context, mapper)
 {
 }
 public UserAddressesService(natureBeautyContext context, IMapper mapper) : base(context, mapper)
 {
 }
예제 #6
0
 public WishlistsService(natureBeautyContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
예제 #7
0
 public ProductTypesService(natureBeautyContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
예제 #8
0
 public ProductsIngredientsService(natureBeautyContext context, IMapper mapper) : base(context, mapper)
 {
 }
예제 #9
0
 //First: base service from parent IService than IService for this class
 public BaseCRUDService(natureBeautyContext context, IMapper mapper) : base(context, mapper)
 {
 }
예제 #10
0
 public RecommenderService(natureBeautyContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }