public ItemService(Model context) : base(context)
 {
     _mapper = MapperService.GetMapperInstance();
 }
Exemplo n.º 2
0
 public CategoryService(Model context) : base(context)
 {
     _mapper = MapperService.GetMapperInstance();
 }
Exemplo n.º 3
0
 public EmployeeService(Model context) : base(context)
 {
     _mapper = MapperService.GetMapperInstance();
 }
 public OrderService(Model context) : base(context)
 {
     _mapper          = MapperService.GetMapperInstance();
     _categoryService = new CategoryService(context);
 }