Пример #1
0
 public UserService(GetReadyDbContext context,
                    IConfiguration configuration,
                    IQuestionSheetService questionSheetService)
 {
     this.context              = context;
     this.configuration        = configuration;
     this.questionSheetService = questionSheetService;
 }
 public QuestionSheetService(GetReadyDbContext context)
 {
     this.context = context;
 }
Пример #3
0
 public SeederService(GetReadyDbContext context, IUserService userService)
 {
     this.context     = context;
     this.userService = userService;
 }