public int DeleteListTagsRepository(Tag tags)
 {
     _ConvectionContext.Tags.Remove(tags);
     return(_ConvectionContext.SaveChanges());
 }
Exemplo n.º 2
0
 public int InsertVendorRepository(Vendor vendor)
 {
     _ConvectionContext.vendors.Add(vendor);
     return(_ConvectionContext.SaveChanges());
 }