public Profile GetProfile()

in src/app/ContosoTraders.Api.Core/Services/Implementations/ProfileService.cs [19:26]


    public Profile GetProfile(string email)
    {
        var profile = _profileRepository.Profiles.SingleOrDefault(profile => profile.Email == email);

        if (profile is null) throw new ProfileNotFoundException(email);

        return profile;
    }