예제 #1
0
 public GerenciarAusentesModel(ICipasClient cipasClient,
                               IReunioesClient reunioesClient,
                               IUsersClient usersClient)
 {
     this.cipasClient    = cipasClient ?? throw new ArgumentNullException(nameof(cipasClient));
     this.reunioesClient = reunioesClient ?? throw new ArgumentNullException(nameof(reunioesClient));
     this.usersClient    = usersClient ?? throw new ArgumentNullException(nameof(usersClient));
 }
예제 #2
0
 public DetalharModel(IReunioesClient reunioesClient,
                      IPlanosDeAcaoClient planosDeAcaoClient)
 {
     this.reunioesClient     = reunioesClient ?? throw new ArgumentNullException(nameof(reunioesClient));
     this.planosDeAcaoClient = planosDeAcaoClient ?? throw new ArgumentNullException(nameof(planosDeAcaoClient));
 }
예제 #3
0
 public GerenciarConsentsDeParticipantesModel(IReunioesClient reunioesClient)
 {
     this.reunioesClient = reunioesClient ?? throw new ArgumentNullException(nameof(reunioesClient));
 }
예제 #4
0
 public GerenciarAssuntosModel(IReunioesClient reunioesClient)
 {
     this.reunioesClient = reunioesClient ?? throw new ArgumentNullException(nameof(reunioesClient));
 }
예제 #5
0
 public CadastrarModel(IReunioesClient reunioesClient)
 {
     this.reunioesClient = reunioesClient ?? throw new ArgumentNullException(nameof(reunioesClient));
 }
예제 #6
0
 public DetalharModel(IUserPrincipalBuilder userPrincipalBuilder,
                      IReunioesClient reunioesClient)
 {
     this.userPrincipalBuilder = userPrincipalBuilder ?? throw new ArgumentNullException(nameof(userPrincipalBuilder));
     this.reunioesClient       = reunioesClient ?? throw new ArgumentNullException(nameof(reunioesClient));
 }