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

            return true;
        }
Beispiel #2
0
 public BlockInCost Add(BlockInCost data)
 {
     BlockInCostDao.Add(data);
     return data;
 }
Beispiel #3
0
 public void Delete(BlockInCost data)
 {
     BlockInCostDao.Delete(data);
 }
Beispiel #4
0
 public void Update(BlockInCost data)
 {
     BlockInCostDao.Update(data);
 }