public async Task <TrabalhoDefinicaoDto> AlterarDefinicaoTrabalho(int trabalhoId, TrabalhoDefinicaoDto trabalhoDefinicaoDto) { return(await restService.PostAlterarDefinicaoTrabalhoAsync(trabalhoId, trabalhoDefinicaoDto)); }
public async Task <TrabalhoListaIdsDto> AtualizarTrabalhosEmLote(IEnumerable <int> ids, bool sobrescreverGatilhoIgnorandoTipo, TrabalhoDefinicaoDto trabalhoDefinicao) { var trabalhoDefinicaoJson = UtilJson.ConverterApenasCamposNaoNulos(trabalhoDefinicao); return(await restService.PostAtualizarTrabalhosEmLoteAsync(ids, sobrescreverGatilhoIgnorandoTipo, trabalhoDefinicaoJson)); }
public async Task <TrabalhoDefinicaoDto> AgendarTrabalhoRelatorio(TrabalhoDefinicaoDto definicoes) { return(await restService.PutAgendarTrabalhoRelatorioAsync(definicoes)); }