コード例 #1
0
 public System.Threading.Tasks.Task <bool> AuthenticateCustomerAsync(CarRentalServices.CustomerModel customerLogin)
 {
     return(base.Channel.AuthenticateCustomerAsync(customerLogin));
 }
コード例 #2
0
 public bool AuthenticateCustomer(CarRentalServices.CustomerModel customerLogin)
 {
     return(base.Channel.AuthenticateCustomer(customerLogin));
 }
コード例 #3
0
 public System.Threading.Tasks.Task <bool> RegisterCustomerDetailsAsync(CarRentalServices.CustomerModel customerModel, CarRentalServices.AddressModel customerAddressModel)
 {
     return(base.Channel.RegisterCustomerDetailsAsync(customerModel, customerAddressModel));
 }
コード例 #4
0
 public bool RegisterCustomerDetails(CarRentalServices.CustomerModel customerModel, CarRentalServices.AddressModel customerAddressModel)
 {
     return(base.Channel.RegisterCustomerDetails(customerModel, customerAddressModel));
 }
コード例 #5
0
 public System.Threading.Tasks.Task <string> BookingAsync(int numdays, CarRentalServices.CustomerModel customer)
 {
     return(base.Channel.BookingAsync(numdays, customer));
 }
コード例 #6
0
 public string Booking(int numdays, CarRentalServices.CustomerModel customer)
 {
     return(base.Channel.Booking(numdays, customer));
 }