Esempio n. 1
0
            public void Invite()
            {
                // save it to our calendar, mark one spot as taken, etc.
                // send the employee an email with a reminder.

                _emailer.Invite(Employee.Name + "@company.com", $"You are invited to {Event} on {DateOfEvent:D}");
            }
 public void Invite()
 {
     // save it to our calendar, mark one spot as taken, etc
     // send the employee an email with a reminder
     _emailer.Invite(Employee.Name + "@company.com", "Hi this your email");
 }