Mineplex2018-withcommit/Website/LOC.Website.Common/Contexts/IRepositoryFactory.cs
Jonathan Williams 8198bb31c8 Added sneaking to player disguise.
Did work on DDoSProtectionSwitcher
Work on AccountAdministrator to fix rank issues.
2014-09-01 00:56:32 -07:00

12 lines
294 B
C#

namespace LOC.Core.Data
{
using System.Data.Entity;
using StructureMap;
[PluginFamily(IsSingleton = true, Scope = InstanceScope.Singleton)]
public interface IRepositoryFactory
{
IRepository CreateRepository<TContext>() where TContext : DbContext, new();
}
}