Exemple #1
0
 public ProfileController(IProfileComponent profileComponent, IAuthenticationComponent authenticationComponent,
                          ICommunicationsComponent communicationsComponent, IOptions <AvatarAppSettings> avatarAppOptions) : base(
         authenticationComponent)
 {
     _profileComponent        = profileComponent;
     _communicationsComponent = communicationsComponent;
     _avatarAppSettings       = avatarAppOptions.Value;
 }
 public AuthenticationController(IAuthenticationComponent authenticationComponent) : base(
         authenticationComponent)
 {
 }
Exemple #3
0
 public VideoController(ICastingComponent castingComponent, IProfileComponent profileComponent, IAuthenticationComponent authenticationComponent, IOptions <AvatarAppSettings> avatarAppOptions) : base(authenticationComponent)
 {
     _castingComponent  = castingComponent;
     _profileComponent  = profileComponent;
     _avatarAppSettings = avatarAppOptions.Value;
 }
 public SemifinalController(IAuthenticationComponent authenticationComponent, ISemifinalComponent semifinalComponent) : base(authenticationComponent)
 {
     _semifinalComponent = semifinalComponent;
 }
 /// <summary>
 /// Api Controller Constructor
 /// </summary>
 /// <param name="authenticationComponent"></param>
 public AuthenticationController(IAuthenticationComponent authenticationComponent)
 {
     _authenticationComponent = authenticationComponent;
 }
 protected BaseAuthorizeController(IAuthenticationComponent authenticationComponent)
 {
     AuthenticationComponent = authenticationComponent;
 }
Exemple #7
0
 public AdminController(IAdministrationComponent administrationComponent, IOptions <AvatarAppSettings> avatarAppOptions, ISemifinalComponent semifinalComponent, IAuthenticationComponent authenticationComponent) : base(authenticationComponent)
 {
     _administrationComponent = administrationComponent;
     _semifinalComponent      = semifinalComponent;
     _avatarAppSettings       = avatarAppOptions.Value;
 }
Exemple #8
0
 public FinalController(IFinalComponent finalComponent, IAuthenticationComponent authenticationComponent) : base(authenticationComponent)
 {
     _finalComponent = finalComponent;
 }
Exemple #9
0
 public RatingController(IRatingComponent ratingComponent, IAuthenticationComponent authenticationComponent) : base(authenticationComponent)
 {
     _ratingComponent = ratingComponent;
 }