예제 #1
0
 public DepartmentRepository(ManufactureDbContext context)
 {
     _context = context;
 }
예제 #2
0
 public ManufactureOrderRepository(ManufactureDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public ProductRepository(ManufactureDbContext context)
 {
     _context = context;
 }