public void Delete(DepartmentStockOutCost data)
 {
     DepartmentStockOutCostDao.Delete(data);
 }
 public void Update(DepartmentStockOutCost data)
 {
     DepartmentStockOutCostDao.Update(data);
 }
 public DepartmentStockOutCost Add(DepartmentStockOutCost data)
 {
     DepartmentStockOutCostDao.Add(data);
     return data;
 }
Пример #4
0
        protected bool Equals(DepartmentStockOutCost entity)
        {
            if (entity == null) return false;
            if (!base.Equals(entity)) return false;

            return true;
        }