Ejemplo n.º 1
0
        public static async Task <Result> Atualizar(AlunoDto dto)
        {
            var result = await SendRequest <string>("/" + dto.Id, HttpMethod.Put, dto).ConfigureAwait(false);

            return(result);
        }
Ejemplo n.º 2
0
        public static async Task <Result> Criar(AlunoDto dto)
        {
            var result = await SendRequest <string>("/", HttpMethod.Post, dto).ConfigureAwait(false);

            return(result);
        }