Example #1
0
 public void Delete(CorporationEmployee entity)
 {
     _corporationEmployeeDal.Delete(entity);
 }
Example #2
0
 public CorporationEmployee Add(CorporationEmployee entity)
 {
     return(_corporationEmployeeDal.Add(entity));
 }