using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.FSE.Procedures; namespace Tango.StubsUtils.Service { public class StubsServiceProcedureLogger : IProcedureLogger { private Action _writeLineCallback; public StubsServiceProcedureLogger(Action writeLineCallback) { _writeLineCallback = writeLineCallback; } public void WriteLine(string text) { _writeLineCallback(text); } public void Write(string text) { throw new NotImplementedException(); } public void Clear() { throw new NotImplementedException(); } } }