Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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);
}
}
}