コード例 #1
0
def get_all():
    return Installations_dao.get_all()
コード例 #2
0
def get_by_customer(customer_id):
    res = None
    if authentication.allow_viewing(customer_id):
        res = Installations_dao.get_all(customer_id)
    return res