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.
42 lines
1.1 KiB
42 lines
1.1 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 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;
|
|
}
|
|
|
|
}
|
|
}
|
|
|