public void SetUp()
 {
     _mockRepository = new MockRepository();
     _mongoDbProxy = _mockRepository.StrictMock<IMongoDbProxy>();
     _entityMapper = _mockRepository.StrictMock<IEntityMapper>();
 }
 public FormEventRepository(IMongoDbProxy mongoDbProxy, IEntityMapper entityMapper)
     : base(mongoDbProxy, entityMapper)
 {
 }
 protected EventRepository(IMongoDbProxy mongoDbProxy, IEntityMapper entityMapper)
 {
     MongoDbProxy = mongoDbProxy;
     EntityMapper = entityMapper;
 }