コード例 #1
0
ファイル: LibraryController.cs プロジェクト: Omwitsa/portal
 public LibraryController(LibraryAPIdbContext libraryContext, UnisolAPIdbContext context, IStudentServices studentServices, ISystemServices systemServices)
 {
     _libraryContext    = libraryContext;
     studentCredentials = new StudentCredential(context, studentServices, systemServices);
     library            = new Library(libraryContext);
 }
コード例 #2
0
ファイル: Library.cs プロジェクト: Omwitsa/portal
 public Library(LibraryAPIdbContext libContext)
 {
     _libContext = libContext;
 }