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