public ShowMyIpAddressController(IGetIpAddressService getIpAddressService, IHttpContextAccessor accessor)
 {
     _getIpAddressService = getIpAddressService;
     _accessor            = accessor;
 }
예제 #2
0
 public IPController(IGetIpAddressService getIpAddressService)
 {
     _IGetIpAddressService = getIpAddressService;
 }
예제 #3
0
 public IpController(IGetIpAddressService ipAddressService)
 {
     _ipAddressService = ipAddressService;
 }
예제 #4
0
 public IPController(IGetIpAddressService getIpAddress)
 {
     this.getIpAddress = getIpAddress;
 }