public UserService(TdtGameContext context, HelperService helperService) : base(context) { _helperService = helperService; }
protected Service(TdtGameContext context) { Context = context; DbSet = Context.Set <TEntity>(); }
public TagService(TdtGameContext context) : base(context) { }
public PostService(TdtGameContext context) : base(context) { }
public DataSeeder(TdtGameContext context, UserService userService, HelperService helperService) { _context = context; _userService = userService; _helperService = helperService; }
public ThreadService(TdtGameContext context) : base(context) { }
public TopicService(TdtGameContext context) : base(context) { }