using FileTime.Core.Interactions; namespace FileTime.ConsoleUI.App; public class ConsoleUserCommunicationService : IUserCommunicationService { public Task ReadInputs(params IInputElement[] fields) => throw new NotImplementedException(); public Task ReadInputs(IInputElement field, IEnumerable? previews = null) => throw new NotImplementedException(); public Task ReadInputs(IEnumerable fields, IEnumerable? previews = null) => throw new NotImplementedException(); public void ShowToastMessage(string text) => throw new NotImplementedException(); public Task ShowMessageBox(string text, bool showCancel = true, string? okText = null, string? cancelText = null) => throw new NotImplementedException(); }