Beispiel #1
0
 public UserRepository(HelpLightDbContext _HLDbContext, IVolunteerReporitory _volunteerReporitory,
                       IOrganizationRepository _organizationRepository)
 {
     this._HLDbContext            = _HLDbContext;
     this._volunteerReporitory    = _volunteerReporitory;
     this._organizationRepository = _organizationRepository;
 }
Beispiel #2
0
 public CardRepository(HelpLightDbContext _VaODbContext,
                       ICardRepository _cardRepository, IVolunteerReporitory _volunteerReporitory)
 {
     this._VaODbContext        = _VaODbContext;
     this._cardRepository      = _cardRepository;
     this._volunteerReporitory = _volunteerReporitory;
 }
Beispiel #3
0
 public ReviewOfVolunteerRepository(HelpLightDbContext HelpLightDbContext)
 {
     this._VaODbContext = HelpLightDbContext;
 }
 public EventRepository(HelpLightDbContext OrganizationsAndVolunteersDbContext)
 {
     this._VaODbContext = OrganizationsAndVolunteersDbContext;
 }
 public NotificationRepository(HelpLightDbContext _VaODbContext)
 {
     this._VaODbContext = _VaODbContext;
 }
Beispiel #6
0
 public VolunteerEventReviewRepository(HelpLightDbContext _VaODbContext)
 {
     this._VaODbContext = _VaODbContext;
 }
 public WallRepository(HelpLightDbContext _VaODbContext)
 {
     this._VaODbContext = _VaODbContext;
 }
Beispiel #8
0
 public CommentRepository(HelpLightDbContext _VaODbContext)
 {
     this._VaODbContext = _VaODbContext;
 }
 public KarmaRepository(HelpLightDbContext _VaODbContext,
                        IVolunteerReporitory _volunteerReporitory)
 {
     this._VaODbContext        = _VaODbContext;
     this._volunteerReporitory = _volunteerReporitory;
 }
 public VolunteerOrganizationRepository(HelpLightDbContext _VaODbContext)
 {
     this._VaODbContext = _VaODbContext;
 }
Beispiel #11
0
 public OrganizationRepository(HelpLightDbContext HelpLightDbContext)
 {
     this._HelpLightDbContext = HelpLightDbContext;
 }