Example #1
0
        public bool DelMasterDataById(ObservableCollection <string> masterList)
        {
            bool flag = false;

            if ((masterList != null) && (masterList.Count() > 0))
            {
                BorrowApplyMasterBLL bll = new BorrowApplyMasterBLL();
                flag = bll.DelMasterDataById(masterList);
            }
            else
            {
                flag = false;
            }
            return(flag);
        }
Example #2
0
 public bool DelMasterDataById(ObservableCollection<string> masterList)
 {
     bool flag = false;
     if ((masterList != null) && (masterList.Count() > 0))
     {
         BorrowApplyMasterBLL bll = new BorrowApplyMasterBLL();
         flag = bll.DelMasterDataById(masterList);
     }
     else
     {
         flag = false;
     }
     return flag;
 }