public static List <ReturnsShippingInfo> GetMyReturnsShippingMethod(RetunDetailsBasicInfo returnDetailObj, AspxCommonInfo aspxCommonObj)
        {
            try
            {
                List <ReturnsShippingInfo> info;
                info = AspxUserDashProvider.GetMyReturnsShippingMethod(returnDetailObj, aspxCommonObj);
                return(info);
            }

            catch (Exception e)
            {
                throw e;
            }
        }
        //-------------------------UserDashBoard/User Downloadable Items------------------------------

        public static List <DownloadableItemsByCustomerInfo> GetCustomerDownloadableItems(int offset, int limit, string sku, string name, AspxCommonInfo aspxCommonObj, bool isActive)
        {
            try
            {
                List <DownloadableItemsByCustomerInfo> ml;
                ml = AspxUserDashProvider.GetCustomerDownloadableItems(offset, limit, sku, name, aspxCommonObj, isActive);
                return(ml);
            }

            catch (Exception e)
            {
                throw e;
            }
        }
        public static List <AddressInfo> GetAddressBookDetailsByAddressID(int addressID, int storeID, int portalID, int customerID, string userName, string cultureName)
        {
            List <AddressInfo> lstAddress = AspxUserDashProvider.GetAddressBookDetailsByAddressID(addressID, storeID, portalID, customerID, userName, cultureName);

            return(lstAddress);
        }
 public static void DeleteUserProductReview(int itemID, int itemReviewID, AspxCommonInfo aspxCommonObj)
 {
     AspxUserDashProvider.DeleteUserProductReview(itemID, itemReviewID, aspxCommonObj);
 }
 public static void UpdateUserProductReview(ItemReviewBasicInfo productReviewObj, AspxCommonInfo aspxCommonObj)
 {
     AspxUserDashProvider.UpdateUserProductReview(productReviewObj, aspxCommonObj);
 }
        public static List <UserProductReviewInfo> GetUserProductReviews(AspxCommonInfo aspxCommonObj)
        {
            List <UserProductReviewInfo> lstUPReview = AspxUserDashProvider.GetUserProductReviews(aspxCommonObj);

            return(lstUPReview);
        }
 public static void DeleteAddressBookDetails(int addressID, AspxCommonInfo aspxCommonObj)
 {
     AspxUserDashProvider.DeleteAddressBookDetails(addressID, aspxCommonObj);
 }
        public static List <AddressInfo> GetUserAddressDetails(AspxCommonInfo aspxCommonObj)
        {
            List <AddressInfo> lstAddress = AspxUserDashProvider.GetUserAddressDetails(aspxCommonObj);

            return(lstAddress);
        }
 public static void AddUpdateUserAddress(AddressInfo addressObj, AspxCommonInfo aspxCommonObj)
 {
     AspxUserDashProvider.AddUpdateUserAddress(addressObj, aspxCommonObj);
 }