public async Task update(Notas nota)
        {
            HttpClient client = await get();

            await client.PutAsync(url + "?idAlumno=" + nota.idAlumno, new StringContent(JsonConvert.SerializeObject(nota), Encoding.UTF8, "application/json"));
        }