public AllowCompanyRegisterUserContext(
     IUserCompanyContext userCompanyContext,
     IAuthenticatedUserContext authenticatedUserContext,
     IAllowedRegisterUserCompanyTypes allowedCompanyTypes)
 {
     UserCompanyContext       = userCompanyContext;
     AuthenticatedUserContext = authenticatedUserContext;
     AllowedCompanyTypes      = allowedCompanyTypes;
 }
Exemplo n.º 2
0
 public CompanyRegisterUser(
     IUserCompanyContext userCompanyContext,
     IRegisterCompanyUser registerCompanyUser,
     IAllowedRegisterUserCompanyTypes allowedCompanyTypes,
     IFindCompanyByMasterId findCompanyByMasterId)
 {
     UserCompanyContext    = userCompanyContext;
     RegisterCompanyUser   = registerCompanyUser;
     AllowedCompanyTypes   = allowedCompanyTypes;
     FindCompanyByMasterId = findCompanyByMasterId;
 }