Skip to content

Instantly share code, notes, and snippets.

@ssukhpinder
Created May 31, 2021 15:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ssukhpinder/c98ce6c8c56113f6335a34f9782a3f49 to your computer and use it in GitHub Desktop.
Save ssukhpinder/c98ce6c8c56113f6335a34f9782a3f49 to your computer and use it in GitHub Desktop.
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