Example #1
0
 public Category GetStorefrontCategory(int resellerId, int categoryId)
 {
     return(StorefrontController.GetStorefrontCategory(
                resellerId,
                categoryId
                ));
 }
Example #2
0
 public List <Category> GetStorefrontPath(int resellerId, int categoryId)
 {
     return(StorefrontController.GetStorefrontPath(
                resellerId,
                categoryId
                ));
 }
Example #3
0
 public List <Category> GetStorefrontCategories(int resellerId, int parentId)
 {
     return(StorefrontController.GetStorefrontCategories(
                resellerId,
                parentId
                ));
 }
Example #4
0
 public CheckoutResult CompleteCheckout(string contractId, int invoiceId, string methodName,
                                        CheckoutDetails details)
 {
     return(StorefrontController.CompleteCheckout(contractId, invoiceId, methodName, details));
 }
Example #5
0
 public string GetContractInvoiceFormatted(string contractId, int invoiceId, string cultureName)
 {
     return(StorefrontController.GetContractInvoiceFormatted(contractId, invoiceId, cultureName));
 }
Example #6
0
 public OrderResult SubmitCustomerOrder(string contractId, OrderItem[] orderItems, KeyValueBunch extraArgs)
 {
     return(StorefrontController.SubmitCustomerOrder(contractId, orderItems, extraArgs));
 }
Example #7
0
 public Product GetStorefrontProduct(int resellerId, int productId)
 {
     return(StorefrontController.GetStorefrontProduct(resellerId, productId));
 }
Example #8
0
 public List <Product> GetProductsInCategory(int resellerId, int categoryId)
 {
     return(StorefrontController.GetStorefrontProductsInCategory(
                resellerId, categoryId));
 }
Example #9
0
 public CheckDomainResult CheckDomain(int resellerId, string domain, string tld)
 {
     return(StorefrontController.CheckDomain(resellerId, domain, tld));
 }
Example #10
0
 public KeyValueBunch GetHostingPlanQuotas(int resellerId, int planId)
 {
     return(StorefrontController.GetHostingPlansQuotas(resellerId, planId));
 }
Example #11
0
 public PaymentMethod GetContractPaymentMethod(string contractId, string methodName)
 {
     return(StorefrontController.GetContractPaymentMethod(contractId, methodName));
 }
Example #12
0
 public List <PaymentMethod> GetResellerPaymentMethods(int resellerId)
 {
     return(StorefrontController.GetResellerPaymentMethods(resellerId));
 }
Example #13
0
 public List <HostingAddon> GetHostingPlanAddons(int resellerId, int planId)
 {
     return(StorefrontController.GetHostingPlanAddons(resellerId, planId));
 }
Example #14
0
 public List <Product> GetStorefrontProductsByType(int resellerId, int typeId)
 {
     return(StorefrontController.GetStorefrontProductsByType(resellerId, typeId));
 }