service_man/api/service/user.py

11 lines
236 B
Python

from api.uow.uow_base import IUnitOfWork
class UserService:
def __init__(self, uow: IUnitOfWork):
self.uow = uow
async def get_all_users(self):
async with self.uow:
await self.uow.users.find_all()