Beispiel #1
0
 public void Delete(EmploymentCompanyContactVisitLog entity)
 {
     this.Repository.Delete(entity);
     this.Db.Save();
 }
Beispiel #2
0
 public void Save(EmploymentCompanyContactVisitLog entity)
 {
     if(entity.Id==0){
         this.Add(entity);
     }else{
         this.Db.Save();
     }
 }