public ProjectRepository(AYEDbContext context)
 {
     this.context = context;
 }
 public ExpertRepository(AYEDbContext context)
 {
     this.context = context;
 }
예제 #3
0
 public AuthenticationRepository(IOptions <AppSettings> appSettings,
                                 AYEDbContext context)
 {
     this.appSettings = appSettings.Value;
     this.context     = context;
 }