Exemplo n.º 1
0
        public async Task DeletePublisher(int id)
        {
            await BookStoreService.DeleteAsync("publishers", id);

            await LoadPublishers();
        }
Exemplo n.º 2
0
        public async Task DeleteAuthor(int id)
        {
            await BookStoreService.DeleteAsync("authors", id);

            await LoadAuthors();
        }