Exemplo n.º 1
0
 public UserRepository(IceCreamBlogContext context) : base(context)
 {
     manager = new UserManager <User>(new UserStore <User>(context));
 }
Exemplo n.º 2
0
 public BlogLikeRepository(IceCreamBlogContext context) : base(context)
 {
 }
Exemplo n.º 3
0
 public BaseRepository(IceCreamBlogContext context)
 {
     this._context = context;
     this._dbSet   = this._context.Set <T>();
 }
 public PostCommentRepository(IceCreamBlogContext context) : base(context)
 {
 }