public SupplierNoteService(IProductSupplierContext context)
 {
     _context = context ?? throw new ArgumentNullException();
 }
 public SupplierRepository(IProductSupplierContext context)
 {
     _context = context ?? throw new ArgumentNullException(nameof(context));
 }