Beispiel #1
0
 public bool Delete(EmployeeJobInfo entity)
 {
     _db.EmployeesJobInformation.Remove(entity);
     return(Save());
 }
Beispiel #2
0
 public bool Update(EmployeeJobInfo entity)
 {
     _db.EmployeesJobInformation.Update(entity);
     return(Save());
 }
Beispiel #3
0
 public bool Create(EmployeeJobInfo entity)
 {
     _db.EmployeesJobInformation.Add(entity);
     return(Save());
 }