Exemple #1
0
 public int Update(S_City t)
 {
     throw new NotImplementedException();
 }
Exemple #2
0
 public bool Update(S_City t)
 {
     return dal.Update(t) > 0;
 }
Exemple #3
0
 public int Add(S_City t)
 {
     db.S_City.Add(t);
     return db.SaveChanges();
 }
Exemple #4
0
 public bool Add(S_City t)
 {
     return dal.Add(t) > 0;
 }