public void Delete(DepartmentStockInHistory data)
 {
     DepartmentStockInHistoryDao.Delete(data);
 }
 public void Update(DepartmentStockInHistory data)
 {
     DepartmentStockInHistoryDao.Update(data);
 }
 public DepartmentStockInHistory Add(DepartmentStockInHistory data)
 {
     DepartmentStockInHistoryDao.Add(data);
     return data;
 }
Exemplo n.º 4
0
        protected bool Equals(DepartmentStockInHistory entity)
        {
            if (entity == null) return false;
            if (!base.Equals(entity)) return false;

            return true;
        }