コード例 #1
0
 public SystemDomainValuesController(ICommandBus bus, ICurrencyDao _CurrencyDao, ILanguageDao _LanguageDao, ICountryDao _countryDao,
                                     INeighbourhoodDao _neighbourhoodDao, IStateDao _stateDao, ICityDao _cityDao,
                                     IPersonDao _PersonDao, IPersonOriginTypeDao _personOriginTypeDao, IPersonProfileDao _personProfileDao,
                                     IPersonStatusDao _personStatusDao, IPersonTypeDao _personTypeDao, IPersonAddressDao _personAddressDao,
                                     IPersonExpertiseDao _personExpertiseDao, IFileTempDao fileTemp, ISecuritySourceDao _SecurityDao) : base()
 {
     this.bus                  = bus;
     this._CurrencyDao         = _CurrencyDao;
     this._LanguageDao         = _LanguageDao;
     this._CountryDao          = _countryDao;
     this._NeighbourhoodDao    = _neighbourhoodDao;
     this._StateDao            = _stateDao;
     this._CityDao             = _cityDao;
     this._PersonDao           = _PersonDao;
     this._PersonOriginTypeDao = _personOriginTypeDao;
     this._PersonProfileDao    = _personProfileDao;
     this._PersonStatusDao     = _personStatusDao;
     this._PersonTypeDao       = _personTypeDao;
     this._PersonAddressDao    = _personAddressDao;
     this._listFileTemp        = new List <int>();
     this._FileTemp            = fileTemp;
     this._PersonExpertiseDao  = _personExpertiseDao;
     this._SecurityDao         = _SecurityDao;
 }
コード例 #2
0
 public LanguageController(ICommandBus bus, ILanguageDao _languageDao) : base()
 {
     this.bus          = bus;
     this._LanguageDao = _languageDao;
 }
コード例 #3
0
ファイル: LanguageService.cs プロジェクト: dalinhuang/loosoft
 /// <summary>
 /// 创建一个不带参的构造函数
 /// </summary>
 private LanguageService()
 {
     //获取采集器接口
     _daoManager = ServiceConfig.GetInstance().DaoManager;
     _lanaguageDao = _daoManager.GetDao(typeof(ILanguageDao)) as ILanguageDao;
 }
コード例 #4
0
 /// <summary>
 /// 创建一个不带参的构造函数
 /// </summary>
 private LanguageService()
 {
     //获取采集器接口
     _daoManager   = ServiceConfig.GetInstance().DaoManager;
     _lanaguageDao = _daoManager.GetDao(typeof(ILanguageDao)) as ILanguageDao;
 }