using Core.Models.Eft.Ws; namespace Core.Services; public class NotificationService { public Dictionary> GetMessageQueue() { throw new NotImplementedException(); } public List GetMessageFromQueue(string sessionId) { throw new NotImplementedException(); } public void UpdateMessageOnQueue(string sessionId, List value) { throw new NotImplementedException(); } public bool Has(string sessionID) { throw new NotImplementedException(); } /// /// Pop first message from queue. /// public object Pop(string sessionID) { throw new NotImplementedException(); } /// /// Add message to queue /// public void Add(string sessionID, WsNotificationEvent message) { throw new NotImplementedException(); } /// /// Get message queue for session /// /// public List Get(string sessionID) { throw new NotImplementedException(); } }