Mineplex2018-withcommit/Website/LOC.Core/Data/RepositoryFactory.cs
Jonathan Williams 3fb52c5c71 Initial Commit
2013-08-27 08:14:08 -07:00

13 lines
301 B
C#

namespace LOC.Core.Data
{
using System.Data.Entity;
public class RepositoryFactory : IRepositoryFactory
{
public IRepository CreateRepository<TContext>() where TContext : DbContext, new()
{
return new Repository<TContext>(new TContext());
}
}
}