use crate::cqrs::infra::daos::dbos::{EntityDBO, EventDBO};
use crate::cqrs::infra::daos::mongo_dao::MongoDAO;
pub type EntityMongoDAO<DATADBO> = MongoDAO<EntityDBO<DATADBO, String>>;
pub type EventMongoDAO<EVENTDBO> = MongoDAO<EventDBO<EVENTDBO, String>>;