(session, project_string_id: str)
| 668 | |
| 669 | @staticmethod |
| 670 | def get_by_string_id(session, project_string_id: str): |
| 671 | return session.query(Project).filter( |
| 672 | Project.project_string_id == project_string_id).first() |
| 673 | |
| 674 | @staticmethod |
| 675 | def get_by_id(session, id: int): |
no outgoing calls