Example #1
0
 public virtual void Update(ApplicationRowFilterType entity)
 {
     if (entity != null)
     {
         this.Context.Entry <ApplicationRowFilterType>(entity).State = EntityState.Modified;
     }
 }
Example #2
0
 public void Delete(ApplicationRowFilterType entity)
 {
     this.DbEntitySet.Remove(entity);
 }
Example #3
0
 public void Create(ApplicationRowFilterType entity)
 {
     this.DbEntitySet.Add(entity);
 }