public async Task <IResult> UpdateAsync(Location location)
        {
            await _locationDao.UpdateAsync(location);

            return(new SuccessResult(true, ResultMessages.LocationUpdated));
        }