Exemple #1
0
 public void Delete(BlockIn data)
 {
     BlockInDao.Delete(data);
 }
Exemple #2
0
 public void Update(BlockIn data)
 {
     BlockInDao.Update(data);
 }
Exemple #3
0
 public BlockIn Add(BlockIn data)
 {
     BlockInDao.Add(data);
     return data;
 }
Exemple #4
0
        protected bool Equals(BlockIn entity)
        {
            if (entity == null) return false;
            if (!base.Equals(entity)) return false;

            return true;
        }