Appointment.GetAlertTime C# (CSharp) Method

GetAlertTime() public static method

public static GetAlertTime ( DateTime appointment, AlertLevel alertLevel ) : DateTime
appointment DateTime
alertLevel AlertLevel
return DateTime
    public static DateTime GetAlertTime(DateTime appointment, AlertLevel alertLevel)
    {
        throw new NotImplementedException("Please implement the (static) Appointment.GetAlertTime() method");
    }

Usage Example

Ejemplo n.º 1
0
 public void GetAlertTime_standard()
 {
     Assert.Equal(new DateTime(2019, 07, 25, 14, 15, 0),
                  Appointment.GetAlertTime(new DateTime(2019, 7, 25, 16, 0, 0),
                                           AlertLevel.Standard));
 }
All Usage Examples Of Appointment::GetAlertTime