public IEnumerable <Product> Get()
        {
            DBMDX          d           = new DBMDX();
            List <Product> productList = new List <Product>();

            productList = (List <Product>)d.getProductSaleCountMembers();
            return(productList);
        }
        public IEnumerable <Category> Get()
        {
            DBMDX           d            = new DBMDX();
            List <Category> categoryList = new List <Category>();

            categoryList = (List <Category>)d.getProductCategories();

            return(categoryList);
        }
        public IEnumerable <Category> Get(int year, int month, int day)
        {
            DBMDX           d            = new DBMDX();
            List <Category> categoryList = new List <Category>();

            categoryList = (List <Category>)d.getProductCategoriesSaleCountYearMonthDay(year, month, day);

            return(categoryList);
        }
        public IEnumerable <Category> Get(int year)
        {
            DBMDX           d            = new DBMDX();
            List <Category> categoryList = new List <Category>();

            categoryList = (List <Category>)d.getProductCategoriesSaleCountYear(year);

            return(categoryList);
        }
Beispiel #5
0
        public IEnumerable <Product> Get(int year, int month, int day)
        {
            DBMDX          d           = new DBMDX();
            List <Product> productList = new List <Product>();

            productList = (List <Product>)d.getProductSaleCountYearMonthDay(year, month, day);

            return(productList);
        }
Beispiel #6
0
        public IEnumerable <Product> Get(int year)
        {
            DBMDX          d           = new DBMDX();
            List <Product> productList = new List <Product>();

            productList = (List <Product>)d.getProductSaleCountYear(year);

            return(productList);
        }