Exemple #1
0
        protected bool Equals(BlockInCost entity)
        {
            if (entity == null) return false;
            if (!base.Equals(entity)) return false;

            return true;
        }
 public BlockInCost Add(BlockInCost data)
 {
     BlockInCostDao.Add(data);
     return data;
 }
 public void Delete(BlockInCost data)
 {
     BlockInCostDao.Delete(data);
 }
 public void Update(BlockInCost data)
 {
     BlockInCostDao.Update(data);
 }