Ejemplo n.º 1
0
 /// <summary>
 /// Get the Notification List for an Account
 /// </summary>
 /// <param name="StartIndex">Start index</param>
 /// <param name="Count">No of records to retrieve</param>
 /// <param name="AccountID">unique indentofoer for an account</param>
 /// <returns>List of notification info</returns>
 public async Task <List <NotificationInfo> > GetNotificationListByAccountID(int StartIndex, int Count, long AccountID)
 {
     return(await _notificationClient.GetNotificationListByAccountID(StartIndex, Count, AccountID));
 }