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