Exemplo n.º 1
0
 public bool Update(ProgramFee obj)
 {
     try
     {
         _db.SubmitChanges();
     }
     catch (Exception ex)
     {
         Debug.Print(ex.Message);
         return(false);
     }
     return(true);
 }
Exemplo n.º 2
0
 public int Add(ProgramFee obj)
 {
     try
     {
         _db.ProgramFees.InsertOnSubmit(obj);
         _db.SubmitChanges();
     }
     catch (Exception ex)
     {
         Debug.Print(ex.Message);
         return(-1);
     }
     return(_db.ProgramFees.Max(x => x.ProgramFeeId));
 }