コード例 #1
0
 public UserService(TdtGameContext context, HelperService helperService) : base(context)
 {
     _helperService = helperService;
 }
コード例 #2
0
 protected Service(TdtGameContext context)
 {
     Context = context;
     DbSet   = Context.Set <TEntity>();
 }
コード例 #3
0
 public TagService(TdtGameContext context) : base(context)
 {
 }
コード例 #4
0
 public PostService(TdtGameContext context) : base(context)
 {
 }
コード例 #5
0
 public DataSeeder(TdtGameContext context, UserService userService, HelperService helperService)
 {
     _context       = context;
     _userService   = userService;
     _helperService = helperService;
 }
コード例 #6
0
 public ThreadService(TdtGameContext context) : base(context)
 {
 }
コード例 #7
0
 public TopicService(TdtGameContext context) : base(context)
 {
 }