Esempio n. 1
0
 public static DataTable Get_ProcRefClause_DAL(int varID)
 {
     try
     {
         cls_Procedures_DAL objdal = new cls_Procedures_DAL();
         return(objdal.Get_ProcRefClause_DAL(varID));
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }
Esempio n. 2
0
 public static void Delete_ProcRefClause_BAL(int varID)
 {
     try
     {
         cls_Procedures_DAL objdal = new cls_Procedures_DAL();
         objdal.Delete_ProcRefClause_DAL(varID);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }
Esempio n. 3
0
 public static string Save_ProcRefClause_BAL(DataTable ProcRefList)
 {
     try
     {
         cls_Procedures_DAL objdal = new cls_Procedures_DAL();
         return(objdal.Save_ProcRefClause_DAL(ProcRefList));
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }
Esempio n. 4
0
        public static DataTable Get_ProceduresNotes_BAL(string Proc_ID)
        {
            try
            {
                cls_Procedures_DAL objdal = new cls_Procedures_DAL();

                return(objdal.Get_ProceduresNotes_DAL(Proc_ID));
            }
            catch (Exception ex)
            {
                return(null);

                throw new Exception(ex.Message);
            }
        }
Esempio n. 5
0
        public static DataTable Get_Procedures_BAL(int tagID = 0)
        {
            try
            {
                cls_Procedures_DAL objdal = new cls_Procedures_DAL();

                return(objdal.Get_Procedures_DAL(tagID));
            }
            catch (Exception ex)
            {
                return(null);

                throw new Exception(ex.Message);
            }
        }