using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Biskilog_Accounting.Shared.Interfaces { public interface IMainInterface { void ShowReceipt(string a_receipt); DateOnly CurrentTradeDate(); DateOnly PreviousTradeDate(); } }