public PersonController(ICommandBus bus, IFileTempDao fileTemp, IPersonDao _PersonDao, IPersonOriginTypeDao _personOriginTypeDao, IPersonProfileDao _personProfileDao , IPersonStatusDao _personStatusDao, IPersonTypeDao _personTypeDao, IPersonAddressDao _personAddressDao, IPersonExpertiseDao _personExpertiseDao, IPersonSkinDao personSkinDao) : base() { this.bus = bus; this._PersonDao = _PersonDao; this._PersonOriginTypeDao = _personOriginTypeDao; this._PersonProfileDao = _personProfileDao; this._PersonStatusDao = _personStatusDao; this._PersonTypeDao = _personTypeDao; this._PersonAddressDao = _personAddressDao; this._PersonSkinDao = personSkinDao; this._listFileTemp = new List <int>(); this._FileTemp = fileTemp; this._PersonExpertiseDao = _personExpertiseDao; _storage = new Storage.StorageClient(CustomConfiguration.Storage); _containerName = CustomConfiguration.ContainerName; }
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; }