Example #1
0
 public IncluirModel(IRecursoProjetoGrpcService recursoProjetoGrpcService,
                     IRecursoGrpcService recursoGrpcService,
                     ICrudGrpcService <ProjetoViewModel> projetoGrpcService)
 {
     _recursoProjetoGrpcService = recursoProjetoGrpcService;
     _recursoGrpcService        = recursoGrpcService;
     _projetoGrpcService        = projetoGrpcService;
 }
Example #2
0
 public IncluirModel(IImpedimentoTarefaGrpcService impedimentoTarefaGrpcService,
                     ICrudGrpcService <ImpedimentoViewModel> impedimentoGrpcService,
                     ITarefaGrpcService tarefaGrpcService)
 {
     _impedimentoTarefaGrpcService = impedimentoTarefaGrpcService;
     _impedimentoGrpcService       = impedimentoGrpcService;
     _tarefaGrpcService            = tarefaGrpcService;
 }
Example #3
0
 public AlterarModel(ITarefaGrpcService tarefaGrpcService,
                     ICrudGrpcService <ProjetoViewModel> projetoGrpcService,
                     ICrudGrpcService <SistemaViewModel> sistemaGrpcService,
                     ICrudGrpcService <WorkflowViewModel> workflowGrpcService,
                     ICrudGrpcService <TipoTarefaViewModel> tipoTarefaGrpcService)
 {
     _tarefaGrpcService     = tarefaGrpcService;
     _projetoGrpcService    = projetoGrpcService;
     _sistemaGrpcService    = sistemaGrpcService;
     _workflowGrpcService   = workflowGrpcService;
     _tipoTarefaGrpcService = tipoTarefaGrpcService;
 }
Example #4
0
 public ListarModel(ICrudGrpcService <ProjetoViewModel> projetoGrpcService)
 {
     _projetoGrpcService = projetoGrpcService;
 }
Example #5
0
 public ListarModel(ICrudGrpcService <WorkflowViewModel> workflowGrpcService)
 {
     _workflowGrpcService = workflowGrpcService;
 }
Example #6
0
 public RemoverModel(ICrudGrpcService <WorkflowViewModel> workflowGrpcService)
 {
     _workflowGrpcService = workflowGrpcService;
 }
Example #7
0
 public RobotService(ICrudGrpcService <Robot> grpcService)
 {
     _grpcService = grpcService;
 }
Example #8
0
 public ShuttleService(ICrudGrpcService <Shuttle> grpcService)
 {
     _grpcService = grpcService;
 }
Example #9
0
 public IncluirModel(ICrudGrpcService <SistemaViewModel> sistemaGrpcService)
 {
     _sistemaGrpcService = sistemaGrpcService;
 }
Example #10
0
 public RemoverModel(ICrudGrpcService <ImpedimentoViewModel> impedimentoGrpcService)
 {
     _impedimentoGrpcService = impedimentoGrpcService;
 }
Example #11
0
 public RemoverModel(ICrudGrpcService <SistemaViewModel> sistemaGrpcService)
 {
     _sistemaGrpcService = sistemaGrpcService;
 }
Example #12
0
 public CaptainService(ICrudGrpcService <Captain> grpcService)
 {
     _grpcService = grpcService;
 }
Example #13
0
 public IncluirModel(ICrudGrpcService <WorkflowViewModel> workflowGrpcService)
 {
     _workflowGrpcService = workflowGrpcService;
 }
Example #14
0
 public PlanetService(ICrudGrpcService <Planet> grpcService)
 {
     _grpcService = grpcService;
 }
Example #15
0
 public AlterarModel(ICrudGrpcService <ProjetoViewModel> projetoGrpcService,
                     ICrudGrpcService <SistemaViewModel> sistemaGrpcService)
 {
     _projetoGrpcService = projetoGrpcService;
     _sistemaGrpcService = sistemaGrpcService;
 }
 public ExplorationService(ICrudGrpcService <Exploration> grpcService)
 {
     _grpcService = grpcService;
 }
Example #17
0
 public RemoverModel(ICrudGrpcService <ProjetoViewModel> projetoGrpcService)
 {
     _projetoGrpcService = projetoGrpcService;
 }
Example #18
0
 public AlterarModel(IImpedimentoTarefaGrpcService impedimentoTarefaGrpcService,
                     ICrudGrpcService <ImpedimentoViewModel> impedimentoGrpcService)
 {
     _impedimentoTarefaGrpcService = impedimentoTarefaGrpcService;
     _impedimentoGrpcService       = impedimentoGrpcService;
 }
Example #19
0
 public IncluirModel(ICrudGrpcService <ImpedimentoViewModel> impedimentoGrpcService)
 {
     _impedimentoGrpcService = impedimentoGrpcService;
 }
Example #20
0
 public AlterarModel(ICrudGrpcService <SistemaViewModel> sistemaGrpcService)
 {
     _sistemaGrpcService = sistemaGrpcService;
 }
Example #21
0
 public TeamService(ICrudGrpcService <Team> grpcService)
 {
     _grpcService = grpcService;
 }
Example #22
0
 public ListarModel(ICrudGrpcService <ImpedimentoViewModel> impedimentoGrpcService)
 {
     _impedimentoGrpcService = impedimentoGrpcService;
 }
Example #23
0
 public FluxoTrabalhoModel(ICrudGrpcService <WorkflowViewModel> workflowGrpcService,
                           ITarefaGrpcService tarefaGrpcService)
 {
     _workflowGrpcService = workflowGrpcService;
     _tarefaGrpcService   = tarefaGrpcService;
 }