Exemplo n.º 1
0
 public ServiceBase(CharityDbContext context)
 {
     _context = context;
 }
Exemplo n.º 2
0
 public DonationsService(CharityDbContext context)
     : base(context)
 {
 }
 public DonationService(ILoggerFactory loggerFactory, CharityDbContext context)
 {
     _logger  = loggerFactory.CreateLogger("Donation Service");
     _context = context;
 }
 public UserManagerService(CharityDbContext context)
 {
     _context = context;
 }
Exemplo n.º 5
0
 public EventService(CharityDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
Exemplo n.º 6
0
 public MessagesService(CharityDbContext context)
     : base(context)
 {
 }
Exemplo n.º 7
0
 public ImageService(CharityDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
 public InstitutionsService(CharityDbContext context)
     : base(context)
 {
 }