Skip to content

Instantly share code, notes, and snippets.

@pparadis
Created February 8, 2016 11:35
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 pparadis/97ae3d792095da3726c0 to your computer and use it in GitHub Desktop.
Save pparadis/97ae3d792095da3726c0 to your computer and use it in GitHub Desktop.
//this is bridge
//Get the employee list
var employees = EmployeeService.GetAllEmployees();
//Sort employee by name
employees = employees.OrderBy(p => p.Name);
//Send email to employee
MailService.SendMail(employee.Email);
//Get today's date
vat today = DateTime.Now
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment