Exemplo n.º 1
0
 public ProfileController(IProfileComponent profileComponent, IAuthenticationComponent authenticationComponent,
                          ICommunicationsComponent communicationsComponent, IOptions <AvatarAppSettings> avatarAppOptions) : base(
         authenticationComponent)
 {
     _profileComponent        = profileComponent;
     _communicationsComponent = communicationsComponent;
     _avatarAppSettings       = avatarAppOptions.Value;
 }
Exemplo n.º 2
0
 public VideoController(ICastingComponent castingComponent, IProfileComponent profileComponent, IAuthenticationComponent authenticationComponent, IOptions <AvatarAppSettings> avatarAppOptions) : base(authenticationComponent)
 {
     _castingComponent  = castingComponent;
     _profileComponent  = profileComponent;
     _avatarAppSettings = avatarAppOptions.Value;
 }