예제 #1
0
        //Item Grid Bind
        #region [Item Grid Bind]

        public DataSet BindItemGrid_BL(EWA_QualityControl objEWA)
        {
            try
            {
                DL_QualityControl objDL = new DL_QualityControl();
                DataSet           ds    = objDL.BindItemGrid_DL(objEWA);
                return(ds);
            }
            catch (Exception exp)
            {
                throw exp;
            }
        }
예제 #2
0
        //To Fetch POCode

        #region [Fetch POCode]

        public DataSet GetPOCode_BL(EWA_QualityControl objEWA)
        {
            try
            {
                DL_QualityControl objDL = new DL_QualityControl();
                DataSet           ds    = objDL.GetPOCode_DL(objEWA);
                return(ds);
            }
            catch (Exception exp)
            {
                throw exp;
            }
        }
예제 #3
0
        //Bind Supplier Category
        #region [Bind PO Details]

        public DataSet BindPODetails_BL(EWA_QualityControl objEWA)
        {
            try
            {
                DL_QualityControl objDL = new DL_QualityControl();
                DataSet           ds    = objDL.BindPODetails_DL(objEWA);
                return(ds);
            }
            catch (Exception)
            {
                throw;
            }
        }
예제 #4
0
        //Action Performed
        #region [ActionPerformed For Supplier ]

        public int QCAction_BL(EWA_QualityControl objEWA, DataTable dt)
        {
            try
            {
                DL_QualityControl objDL = new DL_QualityControl();
                int flag = objDL.QCAction_DL(objEWA, dt);
                return(flag);
            }
            catch (Exception)
            {
                throw;
            }
        }