protected override async Task ManageRepositoryAsync(IDeleteCountryCommand command)
        {
            NullGuard.NotNull(command, nameof(command));

            await ContactRepository.DeleteCountryAsync(command.CountryCode);
        }