예제 #1
0
 /// <summary>
 /// Returns a list of Schedules for a specific notificaiton
 /// </summary>
 /// <param name="NotificationID">Brings back a list of all the daily schedules for the specific notification</param>
 /// <param name="Day">Brings back a single day's schedule</param>
 /// <returns>schedule list</returns>
 public async Task <object> GetNotificationScheduleList(long NotificationID, string Day = "")
 {
     return(await _notificationClient.GetNotificationScheduleList(NotificationID, Day));
 }