コード例 #1
0
ファイル: ProfTestInfoProvider.cs プロジェクト: IKmet/Lv-273
 public ProfTestInfoProvider(IOptions <ConstSettings> constSettings, EpaContext cont)
 {
     this.context     = cont;
     this.constValues = constSettings;
 }
コード例 #2
0
 public SpecialtyProvider(EpaContext context, IOptions <ConstSettings> constValues)
 {
     this.context        = context;
     this.constValues    = constValues;
     this.ratingProvider = new RatingProvider(constValues.Value.KoefOfNumApplication);
 }
コード例 #3
0
 public UserInformationProvider(EpaContext context, IOptions <ConstSettings> constValues)
 {
     this.context     = context;
     this.constValues = constValues;
     ratingProvider   = new RatingProvider(constValues.Value.KoefOfNumApplication);
 }
コード例 #4
0
 public SpecialtyProvider(EpaContext cont)
 {
     this.context = cont;
 }
コード例 #5
0
 public UniversitiesProvider(EpaContext context, IOptions <ConstSettings> constSettings)
 {
     this.context       = context;
     this.constSettings = constSettings;
 }