Ejemplo n.º 1
0
 public ProfileController(IProfileComponent profileComponent, IAuthenticationComponent authenticationComponent,
                          ICommunicationsComponent communicationsComponent, IOptions <AvatarAppSettings> avatarAppOptions) : base(
         authenticationComponent)
 {
     _profileComponent        = profileComponent;
     _communicationsComponent = communicationsComponent;
     _avatarAppSettings       = avatarAppOptions.Value;
 }
Ejemplo n.º 2
0
 public VideoController(ICastingComponent castingComponent, IProfileComponent profileComponent, IAuthenticationComponent authenticationComponent, IOptions <AvatarAppSettings> avatarAppOptions) : base(authenticationComponent)
 {
     _castingComponent  = castingComponent;
     _profileComponent  = profileComponent;
     _avatarAppSettings = avatarAppOptions.Value;
 }
Ejemplo n.º 3
0
 public RemoveUnusedFilesScheduler(IMediator mediator, IOptions <AvatarAppSettings> settingsOptions, IQueryManager queryManager)
 {
     _mediator     = mediator;
     _queryManager = queryManager;
     _settings     = settingsOptions.Value;
 }
Ejemplo n.º 4
0
 public AdminController(IAdministrationComponent administrationComponent, IOptions <AvatarAppSettings> avatarAppOptions, ISemifinalComponent semifinalComponent, IAuthenticationComponent authenticationComponent) : base(authenticationComponent)
 {
     _administrationComponent = administrationComponent;
     _semifinalComponent      = semifinalComponent;
     _avatarAppSettings       = avatarAppOptions.Value;
 }
Ejemplo n.º 5
0
 public CastingComponent(IMediator mediator, IOptions <AvatarAppSettings> avatarAppSettingsOptions, IQueryManager queryManager) : base(mediator, queryManager)
 {
     _avatarAppSettings = avatarAppSettingsOptions.Value;
 }