EnVisageOnline/Main-RMO/Source/EnVisage.MongoDbMigration/DataAccess/IAccessorBase.cs

11 lines
264 B
C#

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();
}
}