45 lines
1.1 KiB
C#
45 lines
1.1 KiB
C#
using dccdc.DAL;
|
|
using dccdc.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace dccdc.BLL
|
|
{
|
|
public class invoice_printBll
|
|
{
|
|
public invoice_printDal Dal = new invoice_printDal();
|
|
public List<invoice_printModel> GetAllList(string id)
|
|
{
|
|
return Dal.GetAllList(id);
|
|
}
|
|
|
|
public List<charge_project_detailModel> GetDetailList(string id)
|
|
{
|
|
return Dal.GetDetailList(id);
|
|
}
|
|
|
|
public object GetAllList2(string start, string end, string jfbm, string where,string truename,string hstart="",string hend="")
|
|
{
|
|
return Dal.GetAllList2(start, end, jfbm, where, truename,hstart,hend);
|
|
}
|
|
|
|
public List<string> GetPerson()
|
|
{
|
|
return Dal.GetPerson();
|
|
}
|
|
|
|
public object cancelInvoice(string id, ERPUser user)
|
|
{
|
|
return Dal.cancelInvoice(id, user);
|
|
}
|
|
|
|
public Dictionary<dynamic, dynamic> GetPersonCount(string truename)
|
|
{
|
|
return Dal.GetPersonCount(truename);
|
|
}
|
|
}
|
|
}
|