天津投入产出系统后端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
1.3 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using QMAPP.BLL;
using QMAPP.FJC.Entity.FIS;
namespace QMAPP.FJC.BLL.FIS
{
public class FISPhraseBLL: BaseBLL
{
public FISPhraseBook GetFisPhraseBook(string assymaterialcode, string positioncode)
{
return new DAL.FIS.FISPhraseDAL().GetFisPhraseBook(assymaterialcode, positioncode);
}
public FISPhraseBook GetPHRASEBOOK(string Code,string Class)
{
return new DAL.FIS.FISPhraseDAL().GetPHRASEBOOK(Code, Class);
}
public List<FISAssembly> GetAssemblyList(FISAssembly condation)
{
return new DAL.FIS.FISPhraseDAL().GetAssemblyList(condation);
}
public FISAssembly GetAssembly(FISAssembly condation)
{
return new DAL.FIS.FISPhraseDAL().GetAssembly(condation);
}
public int UpdateAssembly(FISAssembly Entity)
{
return new DAL.FIS.FISPhraseDAL().UpdateAssembly(Entity);
}
public int PhraseSync()
{
var dal = new DAL.FIS.FISPhraseDAL();
dal.AssemblySync();
dal.AssemblyModuleSync();
dal.PhraseBookSync();
return 0;
}
}
}