20 lines
473 B
C#
20 lines
473 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
using dccdc.DAL;
|
|||
|
|
using dccdc.Models;
|
|||
|
|
|
|||
|
|
namespace dccdc.BLL
|
|||
|
|
{
|
|||
|
|
public class ProjectFactorMaintainBll
|
|||
|
|
{
|
|||
|
|
public ProjectFactorMaintainDal dal = new ProjectFactorMaintainDal();
|
|||
|
|
public List<DTO_TjfnTjxmModel> GetListBytjxmgzzt(string yhysid, string gzzt)
|
|||
|
|
{
|
|||
|
|
return dal.GetListBytjxmgzzt(yhysid, gzzt);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|