Exemple #1
0
 public System.Threading.Tasks.Task <bool> DiscountByAuthorAsync(BookshopService.User user, string author, int pricePercentage)
 {
     return(base.Channel.DiscountByAuthorAsync(user, author, pricePercentage));
 }
Exemple #2
0
 public bool DiscountOne(BookshopService.User user, string isbn, int pricePercentage)
 {
     return(base.Channel.DiscountOne(user, isbn, pricePercentage));
 }
Exemple #3
0
 public bool DiscountByAuthor(BookshopService.User user, string author, int pricePercentage)
 {
     return(base.Channel.DiscountByAuthor(user, author, pricePercentage));
 }
Exemple #4
0
 public System.Threading.Tasks.Task <bool> DeleteAsync(BookshopService.User user, string isbn)
 {
     return(base.Channel.DeleteAsync(user, isbn));
 }
Exemple #5
0
 public bool DiscountAll(BookshopService.User user, int pricePercentage)
 {
     return(base.Channel.DiscountAll(user, pricePercentage));
 }
Exemple #6
0
 public System.Threading.Tasks.Task <bool> UpdateAsync(BookshopService.User user, HostApplication.BookshopServiceReference.BookModel bookModel, int price, int instock)
 {
     return(base.Channel.UpdateAsync(user, bookModel, price, instock));
 }
Exemple #7
0
 public bool Delete(BookshopService.User user, string isbn)
 {
     return(base.Channel.Delete(user, isbn));
 }
Exemple #8
0
 public System.Threading.Tasks.Task <bool> InsertAsync(BookshopService.User user, string isbn, string title, string author, string publicationDate, int price, int instock)
 {
     return(base.Channel.InsertAsync(user, isbn, title, author, publicationDate, price, instock));
 }
Exemple #9
0
 public bool Update(BookshopService.User user, HostApplication.BookshopServiceReference.BookModel bookModel, int price, int instock)
 {
     return(base.Channel.Update(user, bookModel, price, instock));
 }
Exemple #10
0
 public System.Threading.Tasks.Task <HostApplication.BookshopServiceReference.BookModel> ListByIsbnAsync(BookshopService.User user, string isbn)
 {
     return(base.Channel.ListByIsbnAsync(user, isbn));
 }
Exemple #11
0
 public bool Insert(BookshopService.User user, string isbn, string title, string author, string publicationDate, int price, int instock)
 {
     return(base.Channel.Insert(user, isbn, title, author, publicationDate, price, instock));
 }
Exemple #12
0
 public HostApplication.BookshopServiceReference.BookModel ListByIsbn(BookshopService.User user, string isbn)
 {
     return(base.Channel.ListByIsbn(user, isbn));
 }
Exemple #13
0
 public System.Threading.Tasks.Task <HostApplication.BookshopServiceReference.BookModel[]> ListAllAsync(BookshopService.User user)
 {
     return(base.Channel.ListAllAsync(user));
 }
Exemple #14
0
 public HostApplication.BookshopServiceReference.BookModel[] ListAll(BookshopService.User user)
 {
     return(base.Channel.ListAll(user));
 }
Exemple #15
0
 public System.Threading.Tasks.Task <bool> LogoutAsync(BookshopService.User user)
 {
     return(base.Channel.LogoutAsync(user));
 }
Exemple #16
0
 public bool Logout(BookshopService.User user)
 {
     return(base.Channel.Logout(user));
 }