Ejemplo n.º 1
0
 def __init__(
     self,
     chat_service: ChatService = ChatServiceImpl(),
     user_content_gw: UserContentGateway = UserContentGatewayImpl(),
 ) -> None:
     self._chat_service = chat_service
     self._user_content_gateway = user_content_gw
Ejemplo n.º 2
0
 def __init__(
     self,
     match_service: MatchV1Service = MatchV1ServiceImpl(),
     uc_gw: UserContentGateway = UserContentGatewayImpl(),
 ) -> None:
     self._match_service = match_service
     self._uc_gw = uc_gw
Ejemplo n.º 3
0
 def __init__(
     self,
     user_content_gw: UserContentGateway = UserContentGatewayImpl(),
     match_service: MatchService = MatchServiceImpl(),
 ) -> None:
     self._user_content_gw = user_content_gw
     self._match_service = match_service