Example #1
0
def add_customer_rate():
    return customerController().add_customer_rate(request)
Example #2
0
def get_customer_coupon_by_id(index):
    return customerController().get_customer_coupon_by_id(index)
Example #3
0
def delete_customer_card(index):
    return customerController().delete_customer_card(index)
Example #4
0
def update_customer_user_favorite():
    return customerController().update_customer_user_favorite(request)
Example #5
0
def get_customer_card_by_id_customer(index):
    return customerController().get_customer_card_by_id_customer(index)
Example #6
0
def add_customer_card():
    return customerController().add_customer_card(request)
Example #7
0
def delete_customer_address(index):
    return customerController().delete_customer_address(index)
Example #8
0
def update_customer_address():
    return customerController().update_customer_address(request)
Example #9
0
def add_customer_address():
    return customerController().add_customer_address(request)
Example #10
0
def get_customer_address_by_id_customer(index):
    return customerController().get_customer_address_by_id_customer(index)
Example #11
0
def update_customer():
    return customerController().update_customer(request)