Ejemplo n.º 1
0
 public static IEnumerable <string> GetCustomerAllTimeBoughtProducts(int customerId)
 {
     return(DbReadConnection.ExecStoredProcedure <string>("GetCustomerAllTimeBoughtProducts", new { customerId }));
 }
Ejemplo n.º 2
0
 public static decimal GetCustomerAllTimeShoppingTotal(int customerId)
 {
     return(DbReadConnection.ExecStoredProcedure <decimal>("GetCustomerAllTimeExpense", new { customerId }).SingleOrDefault());
 }