Пример #1
0
 public Repository(IPizzaForumContext context)
 {
     this.EntityTable = context.Set <T>();
 }
 public TopicRepository(IPizzaForumContext context) : base(context)
 {
 }
 public UserRepository(IPizzaForumContext context) : base(context)
 {
 }
 public LoginRepository(IPizzaForumContext context) : base(context)
 {
 }
 public PizzaForumData(IPizzaForumContext context)
 {
     this.context = context;
 }
 public CategoryRepository(IPizzaForumContext context) : base(context)
 {
 }
 public SignInManager(IPizzaForumContext context)
 {
     this.context = context;
 }