Exemplo n.º 1
0
 public void InsertOrUpdate(Cow entity)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 2
0
 public void Edit(object id, Cow entity)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 3
0
 public void Add(Cow entity)
 {
     Entities.SetAdd(entity);
 }
Exemplo n.º 4
0
 public void Delete(Cow entity)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 5
0
 public void Update(Cow entity)
 {
     Entities.Set<Cow>().AddOrUpdate(entity);
     //Entities.SetModified(entity);
 }