Exemplo n.º 1
0
 public IpController(IConcreteLocationRepository locationRepository)
 {
     _locationRepository = locationRepository;
 }
Exemplo n.º 2
0
 public IpController()
 {
     _locationRepository = new ConcreteLocationRepository(db: new PostgresProvider());
 }