public LibraryUnitOfWorkEntityFramework(string connectionName)
 {
     db = new LibraryEntityFrameworkContext(connectionName);
 }
示例#2
0
 public BookRepository(LibraryEntityFrameworkContext context)
 {
     this.context = context;
 }
 public PublishingHouseRepository(LibraryEntityFrameworkContext context)
 {
     this.context = context;
 }
 public PeriodicalRepository(LibraryEntityFrameworkContext context)
 {
     this.context = context;
 }
 public ApplicationRoleStore(LibraryEntityFrameworkContext context) : base(context)
 {
 }
 public BackupFileRepository(LibraryEntityFrameworkContext context)
 {
     this.context = context;
 }
 public UserProfileManager(LibraryEntityFrameworkContext db)
 {
     Database = db;
 }