tfse-app-api-v0.2/file/file_obj.py

14 lines
384 B
Python

from file.file_impl import company_general_rating_report_by_fid, company_general_rating_certification_by_fid
class TfseFile:
def __init__(self):
self.fid = None
def get_general_report(self):
return company_general_rating_report_by_fid(self.fid)
def get_general_certification(self):
return company_general_rating_certification_by_fid(self.fid)