public ErrorOccurrenceService(ErrorDbContext context, ISituation situationService, ILevel levelService, IError errorService)
 {
     _context          = context;
     _situationService = situationService;
     _levelService     = levelService;
     _errorService     = errorService;
 }
コード例 #2
0
 public ErrorService(ErrorDbContext context, ILevel levelService)
 {
     _context      = context;
     _levelService = levelService;
 }
コード例 #3
0
 public SituationService(ErrorDbContext context)
 {
     _context = context;
 }
コード例 #4
0
 public EnvironmentService(ErrorDbContext context)
 {
     this._context = context;
 }
コード例 #5
0
 public UsersController(ErrorDbContext context)
 {
     _context = context;
 }
コード例 #6
0
 public LevelService(ErrorDbContext context)
 {
     this._context = context;
 }
コード例 #7
0
 public TokenController(ErrorDbContext context)
 {
     _context = context;
 }
コード例 #8
0
 public UserService(ErrorDbContext context)
 {
     this._context = context;
 }