Esempio n. 1
0
        public static DataTable getYearForecastByYearSales(string year, string salesId)
        {
            YearForecastDAL objDal = new YearForecastDAL();

            try
            {
                return(objDal.getYearForecastByYearSales(year, salesId));
            }
            catch (Exception ex)
            {
                throw;
            }
            finally
            {
                objDal = null;
            }
        }
Esempio n. 2
0
        public static Int32 insertCustomer(YearForecastBEL objBel)
        {
            YearForecastDAL objDal = new YearForecastDAL();

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