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; }
protected bool Equals(DepartmentStockOutCost entity) { if (entity == null) return false; if (!base.Equals(entity)) return false; return true; }