public DonationRepository(
     ILogger <DonationRepository> logger,
     GloballAppConfig globalSettings,
     CrowdfundingOnLineDBContext crowdfundingOnLineDBContext
     )
 {
     _logger         = logger;
     _globalSettings = globalSettings;
     _crowdfundingOnLineDBContext = crowdfundingOnLineDBContext;
 }
Beispiel #2
0
 public HomeInfoRepository(CrowdfundingOnLineDBContext dBContext)
 {
     _dbContext = dBContext;
 }
Beispiel #3
0
 public CauseRepository(CrowdfundingOnLineDBContext dbContext)
 {
     _dbContext = dbContext;
 }