Exemplo 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();
        }
Exemplo 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));
 }