using System.Collections.Generic;
namespace EnVisage.MongoDbMigration.DataAccess
{
public interface IAccessorBase<T> where T : class, new()
void Insert(T entity);
void Insert(IEnumerable<T> entities);
List<T> GetAll();
}