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

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