public static SlaNotification GetSlaNotification(LoginUser loginUser, int ticketID) { SlaNotifications slaNotifications = new SlaNotifications(loginUser); slaNotifications.LoadByTicketID(ticketID); if (slaNotifications.IsEmpty) { return(null); } else { return(slaNotifications[0]); } }
public SlaNotification(DataRow row, SlaNotifications slaNotifications) : base(row, slaNotifications) { _slaNotifications = slaNotifications; }