public ManufacturerRepository(ItemDbContext manufacturerContext)
 {
     _manufacturerContext = manufacturerContext;
 }
 public ItemRepository(ItemDbContext itemContext)
 {
     _itemContext = itemContext;
 }
 public CategoryRepository(ItemDbContext categoryContext)
 {
     _categoryContext = categoryContext;
 }