this(mongoDb, clasz, null, command);
}
public Monjo(DB mongoDb, Class<T> clasz, String collectionName, Command<T> command2) {
if (collectionName == null){
MonjoConverterFactory factory = MonjoConverterFactory.getInstance();
collectionName = findOutCollectionName(clasz, factory);
}
collection = mongoDb.getCollection(collectionName);
this.clasz = clasz;
this.command = command2;