Skip to content
SqcyService.cs 898 B
Newer Older
Jack Dan's avatar
Jack Dan committed
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Ces.IBLL;
using Ces.DAL;
using Ces.Lib;
using Hxj.Data;
using System.Net;
using System.IO;
using System.Text.RegularExpressions;
using System.Collections;
using Ces.Model;

namespace Ces.BLL
{
    public partial class SqcyService : BaseService, ISqcyService
    {

        public SqcyService() : base(RepositoryFactory.SqcyFactory) { }

        public DataTable GetOutGoingMonthByYear(int year)
        {
            //  return RepositoryFactory.SqcytFactory.GetOutGoingMonthByYear(year);

            return RepositoryFactory.SqcyFactory.GetOutGoingMonthByYear(year);
        }


        public DataTable GiveOrderPriceRank(DateTime OrderDate)
        {
            return RepositoryFactory.SqcyFactory.GiveOrderPriceRank(OrderDate);
        }

    }
}