22 lines
611 B
Python
22 lines
611 B
Python
from typing import Optional, Sequence
|
|
|
|
from sqlalchemy.ext.asyncio import AsyncSession
|
|
from sqlalchemy.future import select
|
|
|
|
from app.domain.models import Role
|
|
|
|
|
|
class RolesRepository:
|
|
def __init__(self, db: AsyncSession):
|
|
self.db = db
|
|
|
|
async def get_all(self) -> Sequence[Role]:
|
|
stmt = select(Role)
|
|
result = await self.db.execute(stmt)
|
|
return result.scalars().all()
|
|
|
|
async def get_by_id(self, role_id: int) -> Optional[Role]:
|
|
stmt = select(Role).filter(Role.id == role_id)
|
|
result = await self.db.execute(stmt)
|
|
return result.scalars().first()
|