public string BorrarAutor(long?id) { try { IAutorRepository Del = new IAutorRepository(); Int32 message = 0; message = Del.DeleteAutores(id); return(message.ToString()); } catch { throw; } }