public Master_serialitemRepository(COREAPIContext context)
 {
     _context = context ?? throw new ArgumentNullException(nameof(context));
 }
 public CustomerRepository(COREAPIContext context)
 {
     _context = context ?? throw new ArgumentNullException(nameof(context));
 }
 public Stock_TransRepository(COREAPIContext context)
 {
     _context = context ?? throw new ArgumentNullException(nameof(context));
 }