public void Delete(EmployeeReward data)
 {
     EmployeeRewardDao.Delete(data);
 }
 public void Update(EmployeeReward data)
 {
     EmployeeRewardDao.Update(data);
 }
 public EmployeeReward Add(EmployeeReward data)
 {
     EmployeeRewardDao.Add(data);
     return data;
 }
Exemple #4
0
        protected bool Equals(EmployeeReward entity)
        {
            if (entity == null) return false;
            if (!base.Equals(entity)) return false;

            return true;
        }