public UnitOfWorkInformation(InformationDbContext projectDbContext)
 {
     m_dbContext = projectDbContext;
     Contact     = new RepositoryContact(m_dbContext);
     Department  = new RepositoryDepartment(m_dbContext);
     ID          = new RepositoryID(m_dbContext);
     Intern      = new RepositoryIntern(m_dbContext);
     Personel    = new RepositoryPersonel(m_dbContext);
     Volunteer   = new RepositoryVolunteer(m_dbContext);
     Offers      = new RepositoryBusinessOffer(m_dbContext);
 }
 public RepositoryBusinessOffer(InformationDbContext context) : base(context)
 {
 }
 public RepositoryVolunteer(InformationDbContext context) : base(context)
 {
 }
Beispiel #4
0
 public StudentRepository(InformationDbContext context)
     : base(context)
 {
 }
 public RepositoryIntern(InformationDbContext context) : base(context)
 {
 }
 public ProjectRepository(InformationDbContext context)
     : base(context)
 {
 }
 public RepositoryDepartment(InformationDbContext context) : base(context)
 {
 }
 public EmployeeRepository(InformationDbContext context)
     : base(context)
 {
 }
 public RepositoryContact(InformationDbContext context) : base(context)
 {
 }
 public RepositoryPersonel(InformationDbContext context) : base(context)
 {
 }
Beispiel #11
0
 public FacultyRepository(InformationDbContext context)
     : base(context)
 {
 }