Exemplo n.º 1
0
 public static List <string> GetPaymentMethods()
 {
     return(SellFromShopDAL.GetPaymentMethods());
 }
Exemplo n.º 2
0
 public static string ConfirmBilling(string uniqueIdentifier)
 {
     return(SellFromShopDAL.ConfirmBilling(uniqueIdentifier));
 }
Exemplo n.º 3
0
 public static List <Product> GetProductByBarCode(string barCode)
 {
     return(SellFromShopDAL.GetProductByBarCode(barCode));
 }
Exemplo n.º 4
0
 public static Customer GetCustomerDetailsByTransactionId(string transactionId)
 {
     return(SellFromShopDAL.GetCustomerDetailsByTransactionId(transactionId));
 }
Exemplo n.º 5
0
 public static BillingDTO GetBillingDetailsByTransationId(long transactionId)
 {
     return(SellFromShopDAL.GetBillingDetailsByTransationId(transactionId));
 }
Exemplo n.º 6
0
 public static bool UpdatePaymentConfirmation(long transactionId)
 {
     return(SellFromShopDAL.UpdatePaymentConfirmation(transactionId));
 }
Exemplo n.º 7
0
 public static long SellProduct(BillingDTO billingDto)
 {
     return(SellFromShopDAL.SellProduct(billingDto));
 }
Exemplo n.º 8
0
 public static int SaveCustomer(Customer model)
 {
     return(SellFromShopDAL.SaveCustomer(model));
 }
Exemplo n.º 9
0
 public static Customer GetCustomer(string mobileNumber)
 {
     return(SellFromShopDAL.GetCustomer(mobileNumber));
 }