예제 #1
0
        //Check Duplicate  Supplier
        #region [Check Duplicate Supplier]

        public int CheckDuplicateSupplier_BL(EWA_Supplier objEWA)
        {
            try
            {
                DL_Supplier objDL = new DL_Supplier();
                int         i     = objDL.CheckDuplicateSupplier_DL(objEWA);
                return(i);
            }
            catch (Exception exp)
            {
                throw exp;
            }
        }
예제 #2
0
        //Bind Supplier Category
        #region [Bind Supplier Category]

        public DataSet BindCategory_BL()
        {
            try
            {
                DL_Supplier objDL = new DL_Supplier();
                DataSet     ds    = objDL.BindCategory_DL();
                return(ds);
            }
            catch (Exception)
            {
                throw;
            }
        }
예제 #3
0
        //Supplier Grid Bind
        #region [Supplier Grid Bind]

        public DataSet BindSupplierGrid_BL(EWA_Supplier objEWA)
        {
            try
            {
                DL_Supplier objDL = new DL_Supplier();
                DataSet     ds    = objDL.BindSupplierGrid_DL(objEWA);
                return(ds);
            }
            catch (Exception exp)
            {
                throw exp;
            }
        }
예제 #4
0
        //Action Performed
        #region [ActionPerformed For Supplier ]

        public int SupplierAction_BL(EWA_Supplier objEWA, DataTable dt)
        {
            try
            {
                DL_Supplier objDL = new DL_Supplier();
                int         flag  = objDL.SupplierAction_DL(objEWA, dt);
                return(flag);
            }
            catch (Exception)
            {
                throw;
            }
        }