public void InsertUpdateforCheckList(ArrayList CheckList)
        {

            BookingCheckListStoredProcedure objchecklist = new BookingCheckListStoredProcedure();
            CheckList.Insert(4, Session["usersid"].ToString());
            objchecklist.InsertUpdateforCheckList(CheckList);

        }
 public void InsertNewCheckList(string ChkListId)
 {
     BookingCheckListStoredProcedure objinsertnew = new BookingCheckListStoredProcedure();
     objinsertnew.InsertNewCheckList(ChkListId);
 }
 public void deleteChkdetails(int deleteChkdetails)
 {
     BookingCheckListStoredProcedure objdelchklistdetail = new BookingCheckListStoredProcedure();
     objdelchklistdetail.deleteChkdetails(deleteChkdetails);
 }
        public void InsertUpdateCheckListDetails(ArrayList CheckListDetails)
        {
            BookingCheckListStoredProcedure objchklistdetail = new BookingCheckListStoredProcedure();
            CheckListDetails.Insert(4, Session["usersid"].ToString());
            objchklistdetail.InsertUpdateCheckListDetails(CheckListDetails);

        }
 public void deleteMyCheckList(int delChecklist)
 {
     BookingCheckListStoredProcedure objdelchecklist = new BookingCheckListStoredProcedure();
     objdelchecklist.deleteMyCheckList(delChecklist);
 }