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

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