/// <summary>
        ///
        /// </summary>
        /// <param name="request"></param>
        /// <param name="cancellationToken"></param>
        /// <returns></returns>
        public async Task <List <PingResponseVm> > Handle(ListPingQuery request, CancellationToken cancellationToken)
        {
            List <Ping> ping = await _pingRepository.GetAllAsync(cancellationToken).ConfigureAwait(false);

            List <PingResponseVm> response = _mapper.Map <List <Ping>, List <PingResponseVm> >(ping);

            return(response);
        }