22 lines
501 B
C#
22 lines
501 B
C#
using YLErp.Model;
|
|
|
|
namespace YLErp.BLL.GenerateDocument
|
|
{
|
|
public class ContractDataSet
|
|
{
|
|
public Dictionary<string, string> ModelDic { get; set; }
|
|
|
|
public trade_contract_group ContractGroup { get; set; }
|
|
|
|
public Variety Variety { get; set; }
|
|
|
|
public underlying_manager Underlying { get; set; }
|
|
|
|
public Client Client { get; set; }
|
|
|
|
public ClientDuty ClientDuty { get; set; }
|
|
|
|
public ClientBankCard ClientBankCard { get; set; }
|
|
}
|
|
}
|