Exemplo n.º 1
0
 public PersonRepo(grpctestdbContext dbContext)
 {
     this.dbContext = dbContext;
 }
Exemplo n.º 2
0
 public PersonService(ILogger <PersonService> logger, grpctestdbContext dbContext)
 {
     _logger        = logger;
     this.dbContext = dbContext;
 }
Exemplo n.º 3
0
 public PersonController(grpctestdbContext dbContext)
 {
     this.dbContext = dbContext;
 }