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