protected bool Equals(BlockInDetail entity) { if (entity == null) return false; if (!base.Equals(entity)) return false; return true; }
public BlockInDetail Add(BlockInDetail data) { BlockInDetailDao.Add(data); return data; }
public void Delete(BlockInDetail data) { BlockInDetailDao.Delete(data); }
public void Update(BlockInDetail data) { BlockInDetailDao.Update(data); }