예제 #1
0
 public Repositorio(SRCDDbContext dbContext)
 {
     this.dbContext = dbContext ?? throw new ArgumentNullException(nameof(dbContext));
 }
예제 #2
0
 public ClinicaRepositorio(SRCDDbContext dbContext) : base(dbContext)
 {
     this.dbContext = dbContext ?? throw new System.ArgumentNullException(nameof(dbContext));
 }