Пример #1
0
 public void Delete(CarColor entity)
 {
     using (carcontext context = new carcontext())
     {
         var addedColor = context.Entry(entity);
         addedColor.State = EntityState.Deleted;
     }
 }
Пример #2
0
 public void Update(CarBrand entity)
 {
     using (carcontext context = new carcontext())
     {
         var updatedBrand = context.Entry(entity);
         updatedBrand.State = EntityState.Modified;
         context.SaveChanges();
     }
 }
Пример #3
0
 public void Delete(CarBrand entity)
 {
     using (carcontext context = new carcontext())
     {
         var deletedbrand = context.Entry(entity);
         deletedbrand.State = EntityState.Deleted;
         context.SaveChanges();
     }
 }
Пример #4
0
 public void Add(CarBrand entity)
 {
     using (carcontext context = new carcontext())
     {
         var addedbrand = context.Entry(entity);
         addedbrand.State = EntityState.Added;
         context.SaveChanges();
     }
 }
Пример #5
0
 public void Add(CarColor entity)
 {
     using (carcontext context = new carcontext())
     {
         var addedColor = context.Entry(entity);
         addedColor.State = EntityState.Added;
         context.SaveChanges();
     }
 }