Exemplo n.º 1
0
 public void Delete(App.Models.Domain.Sheet item)
 {
     if (item != null)
     {
         this._entitySet.Remove(item);
     }
 }
Exemplo n.º 2
0
 public void DeleteById(int id)
 {
     App.Models.Domain.Sheet item = this.FindById(id);
     if (item != null)
     {
         this._entitySet.Remove(item);
     }
 }
Exemplo n.º 3
0
 public void Add(App.Models.Domain.Sheet item)
 {
     this._entitySet.Add(item);
 }