Ejemplo n.º 1
0
 public UserSessionController(ICommandBus bus, IFileTempDao fileTemp, IPersonDao person, IUserDao userDao, IContractDao contractDao, IExpertiseDao expertiseDao,
                              IPersonSkinDao personSkinDao) : base()
 {
     this.bus            = bus;
     this._FileTemp      = fileTemp;
     this._listFileTemp  = new List <int>();
     this._person        = person;
     _storage            = new StorageClient(CustomConfiguration.Storage);
     _containerName      = CustomConfiguration.ContainerName;
     this._userDao       = userDao;
     this._contractDao   = contractDao;
     this._expertiseDao  = expertiseDao;
     this._PersonSkinDao = personSkinDao;
 }
Ejemplo n.º 2
0
 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;
 }