Esempio n. 1
0
        public PerformanceLibraryController(IPerformanceLibrary repo, BridgeCareContext db)
        {
            this.repo = repo ?? throw new ArgumentNullException(nameof(repo));
            this.db   = db ?? throw new ArgumentNullException(nameof(db));

            PerformanceLibraryGetMethods  = CreateGetMethods();
            PerformanceLibrarySaveMethods = CreateSaveMethods();
        }
Esempio n. 2
0
 public PerformanceLibraryController(IPerformanceLibrary repo, BridgeCareContext db)
 {
     this.repo = repo ?? throw new ArgumentNullException(nameof(repo));
     this.db   = db ?? throw new ArgumentNullException(nameof(db));
 }