예제 #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 GerenciarItensModel(ICipasClient cipasClient,
                            IPlanosDeAcaoClient planosDeAcaoClient,
                            IUsersClient usersClient)
 {
     this.cipasClient        = cipasClient ?? throw new ArgumentNullException(nameof(cipasClient));
     this.planosDeAcaoClient = planosDeAcaoClient ?? throw new ArgumentNullException(nameof(planosDeAcaoClient));
     this.usersClient        = usersClient ?? throw new ArgumentNullException(nameof(usersClient));
 }
예제 #3
0
 public AdicionarResponsavelModel(ICipasClient cipasClient,
                                  IPlanosDeAcaoClient planosDeAcaoClient,
                                  IUsersClient usersClient)
 {
     this.cipasClient        = cipasClient ?? throw new ArgumentNullException(nameof(cipasClient));
     this.planosDeAcaoClient = planosDeAcaoClient ?? throw new ArgumentNullException(nameof(planosDeAcaoClient));
     this.usersClient        = usersClient ?? throw new ArgumentNullException(nameof(usersClient));
 }
예제 #4
0
 public GerenciarEstabelecimentosModel(IEstabelecimentosClient estabelecimentosClient,
                                       ICipasClient cipasClient)
 {
     this.estabelecimentosClient = estabelecimentosClient ?? throw new ArgumentNullException(nameof(estabelecimentosClient));
     this.cipasClient            = cipasClient ?? throw new ArgumentNullException(nameof(cipasClient));
 }
예제 #5
0
 public IndexModel(ICipasClient cipasClient)
 {
     this.cipasClient = cipasClient ?? throw new ArgumentNullException(nameof(cipasClient));
 }
예제 #6
0
 public GerenciarMembrosModel(IUsersClient usersClient,
                              ICipasClient cipasClient)
 {
     this.usersClient = usersClient ?? throw new ArgumentNullException(nameof(usersClient));
     this.cipasClient = cipasClient ?? throw new ArgumentNullException(nameof(cipasClient));
 }
예제 #7
0
 public CadastrarModel(ICipasClient cipasClient,
                       IReunioesClient reunioesClient)
 {
     this.cipasClient    = cipasClient ?? throw new ArgumentNullException(nameof(cipasClient));
     this.reunioesClient = reunioesClient ?? throw new ArgumentNullException(nameof(reunioesClient));
 }