예제 #1
0
 public TeaController(ICRUDRepoService <Tea, TeaResponse> teaService, IMapper mapper)
 {
     this.teaService = teaService;
     this.mapper     = mapper;
 }
예제 #2
0
 public UsersController(ICRUDRepoService <User, UserResponse> userService, IMapper mapper)
 {
     this.userService = userService;
     this.mapper      = mapper;
 }
예제 #3
0
 public CoffeeController(ICRUDRepoService <Coffee, CoffeeResponse> coffeeService, IMapper mapper)
 {
     this.coffeeService = coffeeService;
     this.mapper        = mapper;
 }
예제 #4
0
 public ToppingController(ICRUDRepoService <Topping, ToppingResponse> toppingService, IMapper mapper)
 {
     this.toppingService = toppingService;
     this.mapper         = mapper;
 }
예제 #5
0
 public MilkController(ICRUDRepoService <Milk, MilkResponse> milkService, IMapper mapper)
 {
     this.milkService = milkService;
     this.mapper      = mapper;
 }