Ejemplo n.º 1
0
 public RetriverWifi(string data, IAddressRetriver retriverAddress = null, ILinkLocation linkLocation = null) : base(retriverAddress, linkLocation)
 {
     Data            = data;
     retriverAddress = retriverAddress ?? new Nominatim();
     linkLocation    = linkLocation ?? new YandexLink();
 }
Ejemplo n.º 2
0
 protected BaseRetriver(IAddressRetriver retriverAddress, ILinkLocation linkLocation)
 {
     _retriverAddress = retriverAddress;
     _linkLocation    = linkLocation;
 }
Ejemplo n.º 3
0
 public RetriverWifi withRetriverAddress(IAddressRetriver addressRetriver)
 {
     this._retriverAddress = addressRetriver;
     return(this);
 }