Esempio n. 1
0
 private void InsertEntry(string EntryID, string ItemID, string UserResponse, string Comment)
 {
     try
     {
         ChecklistDAL.InsertEntry(EntryID, ItemID, UserResponse, Comment);
     }
     catch (Exception ex)
     {
         ErrorMessage = ex.Message;
     }
     FillItemChecklist(ddlType.SelectedItem.Value);
 }