public RoleRepository(CoreAPIGITVersionContext _context) : base(_context)
 {
     Context = _context;
 }
 public UserRepository(CoreAPIGITVersionContext _context, IOptions <TokenOptions> _tokenOptions) : base(_context)
 {
     Context      = _context;
     tokenOptions = _tokenOptions.Value;
 }
 public BaseRepository(CoreAPIGITVersionContext currentContext)
 {
     context = currentContext;
 }
Пример #4
0
 public CommentRepository(CoreAPIGITVersionContext _context) : base(_context)
 {
     Context = _context;
 }