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