Пример #1
0
 public UserRepoistory(SQLDbContext context, EmailRepoistory EmailRepoistory) : base(context)
 {
     _EmailRepoistory = EmailRepoistory;
 }
Пример #2
0
 public void SetEntities(SQLDbContext context)
 {
     CurrentContext = context;
     entities       = CurrentContext.Set <T>();
 }
Пример #3
0
 public Repository(SQLDbContext context)
 {
     CurrentContext = context;
     entities       = CurrentContext.Set <T>();
 }
Пример #4
0
 public SuggestRepoistory(SQLDbContext context) : base(context)
 {
 }
Пример #5
0
 public ArticleRepoistory(SQLDbContext context) : base(context)
 {
 }
Пример #6
0
 public EmailRepoistory(SQLDbContext context) : base(context)
 {
 }