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)); }
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)); }
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)); }
public GerenciarEstabelecimentosModel(IEstabelecimentosClient estabelecimentosClient, ICipasClient cipasClient) { this.estabelecimentosClient = estabelecimentosClient ?? throw new ArgumentNullException(nameof(estabelecimentosClient)); this.cipasClient = cipasClient ?? throw new ArgumentNullException(nameof(cipasClient)); }
public IndexModel(ICipasClient cipasClient) { this.cipasClient = cipasClient ?? throw new ArgumentNullException(nameof(cipasClient)); }
public GerenciarMembrosModel(IUsersClient usersClient, ICipasClient cipasClient) { this.usersClient = usersClient ?? throw new ArgumentNullException(nameof(usersClient)); this.cipasClient = cipasClient ?? throw new ArgumentNullException(nameof(cipasClient)); }
public CadastrarModel(ICipasClient cipasClient, IReunioesClient reunioesClient) { this.cipasClient = cipasClient ?? throw new ArgumentNullException(nameof(cipasClient)); this.reunioesClient = reunioesClient ?? throw new ArgumentNullException(nameof(reunioesClient)); }