Skip to content

Instantly share code, notes, and snippets.

@thaianhduc
Last active December 8, 2018 14:17
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 thaianhduc/a025d524e6b292d640524a1c659761ee to your computer and use it in GitHub Desktop.
Save thaianhduc/a025d524e6b292d640524a1c659761ee to your computer and use it in GitHub Desktop.
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Demo the readability of the code from method parameters");
var hr = new HrDepartment();
var applicantCvs = new List<VerificationContext>{
new VerificationContext()
{
ApplicantCv = {ApplicantName = "Batman"},
SpecialNotes = "Hire the super hero immediately. That is an order."
},
new VerificationContext(){
ApplicantCv = {ApplicantName = "Robin"}
}
};
hr.VerifyApplicants(applicantCvs);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment