using InServiceQue.Services; namespace InServiceQue.Sample; public class OtherMessageHandler: IQueueHandler { public bool Handle(string payload) { throw new NotImplementedException(); } public async Task HandleAsync(string payload) { Console.WriteLine($"Pizda {payload}"); return await Task.FromResult(true); } }