Exemplo n.º 1
0
 public ParticipantService(ConferenceAppContext context, ILogger <ParticipantService> logger)
 {
     _logger  = logger;
     _context = context;
     entity   = _context.Set <Participant>();
 }
Exemplo n.º 2
0
 public RefereincialService(ConferenceAppContext context)
 {
     _context = context;
     entity   = _context.Set <T>();
 }