コード例 #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;
 }
コード例 #4
0
 public OutputProductsService(natureBeautyContext context, IMapper mapper) : base(context, mapper)
 {
 }
コード例 #5
0
 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;
 }