Exemplo n.º 1
0
 public XmlConfigService()
 {
     _context = new FleetPlanBCUnitOfWork();
     _XmlConfigCollection = new List<object>();
     //载入生成所有XmlConfig的所有相关数据
     this.GetAllRelativeData();
     //注册所有XmlConfig类型
     this.RegisterXmlConfig();
 }
Exemplo n.º 2
0
 public XmlConfigService(FleetPlanBCUnitOfWork context, bool isAirlines)
 {
     _IsAirlines = isAirlines;
     _context = context;
     _XmlConfigCollection = new List<object>();
     //载入生成所有XmlConfig的所有相关数据
     this.GetAllRelativeData();
     //注册所有XmlConfig类型
     this.RegisterXmlConfig();
 }