public int GetOrderCountByWebsiteID(int websiteID, string stime, string etime)
        {
            if (Session[Util.ProjectConfig.ADMINUSER] == null)
            {
                return(0);
            }

            OrderotherhistoryManager om = new OrderotherhistoryManager();

            return(om.GetOrderCountByWebsiteID(websiteID, stime, etime));
        }
        public string GetOrderByWebsiteID(int websiteID, string agent, string webusername, string stime, string etime, string lan)
        {
            if (Session[Util.ProjectConfig.ADMINUSER] == null)
            {
                return("");
            }

            OrderotherhistoryManager om = new OrderotherhistoryManager();

            return(om.GetOrderByWebsiteID(websiteID, agent, webusername, stime, etime, lan));
        }