示例#1
0
        //Update Scheme
        #region [Update Scheme]

        public DataSet UpdateScheme_BL(EWA_Scheme objEWA)
        {
            try
            {
                DL_Scheme objDL = new DL_Scheme();
                DataSet   ds    = objDL.UpdateScheme_DL(objEWA);
                return(ds);
            }
            catch (Exception)
            {
                throw;
            }
        }
示例#2
0
 public DataSet SchemeGridBind_BL(EWA_Scheme objEWA)
 {
     try
     {
         DL_Scheme objDL = new DL_Scheme();
         DataSet   ds    = objDL.SchemeGridBind_DL(objEWA);
         return(ds);
     }
     catch (Exception)
     {
         throw;
     }
 }
示例#3
0
        //Get Data
        #region [Get Data]

        public DataSet BindScheme_BL(EWA_Scheme ObjEWA)
        {
            try
            {
                DL_Scheme objDL = new DL_Scheme();
                DataSet   ds    = objDL.BindScheme_DL(ObjEWA);
                return(ds);
            }
            catch (Exception)
            {
                throw;
            }
        }
示例#4
0
 public int SchemeAction_BL(EWA_Scheme objEWA)
 {
     try
     {
         DL_Scheme objDL = new DL_Scheme();
         int       flag  = objDL.SchemeAction_DL(objEWA);
         return(flag);
     }
     catch (Exception)
     {
         throw;
     }
 }