コード例 #1
0
 public AccountController(IOptions <AppSettings> appMeo, AppMeoContext db, IUserService service, IBlogLogic blogservice)
 {
     _db          = db;
     _userService = service;
     _appsettings = appMeo.Value;
     _blogservice = blogservice;
 }
コード例 #2
0
 public AuthorService(AppMeoContext db)
 {
     _db = db;
 }
コード例 #3
0
 public BlogRepository(AppMeoContext db) : base(db)
 {
 }
コード例 #4
0
 public RepositoryBase(AppMeoContext db)
 {
     _db = db;
 }
コード例 #5
0
 public UserRepository(AppMeoContext options) : base(options)
 {
 }
コード例 #6
0
 public CommentController(AppMeoContext db, ICommentLogic commentLogic)
 {
     _db           = db;
     _commentLogic = commentLogic;
 }
コード例 #7
0
 public UserService(IOptions <AppSettings> appsettings, AppMeoContext db, IBlogLogic blogservice)
 {
     _appsettings = appsettings.Value;
     _db          = db;
     _blogservice = blogservice;
 }
コード例 #8
0
 public ResourcePathRepository(AppMeoContext option) : base(option)
 {
 }
コード例 #9
0
 public CommentRepository(AppMeoContext db) : base(db)
 {
 }
コード例 #10
0
 public RoleRepository(AppMeoContext options) : base(options)
 {
 }
コード例 #11
0
 public RepositoryWrapper(AppMeoContext db)
 {
     _db = db;
 }
コード例 #12
0
 public HubCentral(AppMeoContext db)
 {
     _db = db;
 }