service_man/api/uow/uow_base.py

21 lines
527 B
Python
Raw Normal View History

2024-03-11 21:07:01 +03:00
from api.repositories import UserRepository
2024-03-04 13:15:28 +03:00
2024-03-06 02:28:59 +03:00
class UnitOfWork:
def __init__(self, session_factory):
self.session_factory = session_factory
async def __aenter__(self):
self.session = self.session_factory()
self.users = UserRepository(self.session)
async def __aexit__(self, *args):
await self.session.rollback()
await self.session.close()
async def commit(self):
await self.session.commit()
async def rollback(self):
await self.session.rollback()