示例#1
0
 public bool Update(ProgramOtherInfo obj)
 {
     try
     {
         _db.SubmitChanges();
     }
     catch (Exception ex)
     {
         Debug.Print(ex.Message);
         return(false);
     }
     return(true);
 }
示例#2
0
 public int Add(ProgramOtherInfo obj)
 {
     try
     {
         _db.ProgramOtherInfos.InsertOnSubmit(obj);
         _db.SubmitChanges();
     }
     catch (Exception ex)
     {
         Debug.Print(ex.Message);
         return(-1);
     }
     return(_db.ProgramOtherInfos.Max(x => x.ProgramOtherInfoId));
 }