Skip to content

Instantly share code, notes, and snippets.

@ssukhpinder
Created May 31, 2021 15:01
public class Follower : IFollower
{
public void Update(ICelebrityInstagram celebrityInstagram)
{
Console.WriteLine($"Follower notified. Post of {celebrityInstagram.FullName}: " +
$"{celebrityInstagram.Post}");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment