Ejemplo n.º 1
0
        public static Int32 updateForecastOrder(string salesId, string customerId, string customerName)
        {
            ForecastOrderDAL objDal = new ForecastOrderDAL();

            try
            {
                return(objDal.updateForecastOrder(salesId, customerId, customerName));
            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally
            {
                objDal = null;
            }
        }
Ejemplo n.º 2
0
        public static Int32 deleteAllTmpForecastOrder()
        {
            ForecastOrderDAL objDal = new ForecastOrderDAL();

            try
            {
                return(objDal.deleteAllTmpForecastOrder());
            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally
            {
                objDal = null;
            }
        }
Ejemplo n.º 3
0
        public static DataTable getCustomerWithNoSalesFo()
        {
            ForecastOrderDAL objDal = new ForecastOrderDAL();

            try
            {
                return(objDal.getCustomerWithNoSalesFo());
            }
            catch (Exception ex)
            {
                throw;
            }
            finally
            {
                objDal = null;
            }
        }
Ejemplo n.º 4
0
        public static Int32 updateBasicDataByFo()
        {
            ForecastOrderDAL objDal = new ForecastOrderDAL();

            try
            {
                return(objDal.updateBasicDataByFo());
            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally
            {
                objDal = null;
            }
        }