コード例 #1
0
 public ItemService(Model context) : base(context)
 {
     _mapper = MapperService.GetMapperInstance();
 }
コード例 #2
0
 public CategoryService(Model context) : base(context)
 {
     _mapper = MapperService.GetMapperInstance();
 }
コード例 #3
0
 public EmployeeService(Model context) : base(context)
 {
     _mapper = MapperService.GetMapperInstance();
 }
コード例 #4
0
 public OrderService(Model context) : base(context)
 {
     _mapper          = MapperService.GetMapperInstance();
     _categoryService = new CategoryService(context);
 }