예제 #1
0
 public string UpdateExpenseGroup(FormCollection coll)
 {
     try
     {
         string result = string.Empty;
         result = _objSP.UpdateExpenseGroup(coll["insertExpense"].ToString(), coll["grpid"].ToString());
         return(result);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }