using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using TheButcherShopContracts.BusinessLogicContracts; using TheButcherShopContracts.DataModels; namespace ButcherShopBusinessLogic.Implementations; internal class SaleBusinessLogicContract : ISaleBusinessLogicContract { public List GetAllSalesByPeriod(DateTime fromDate, DateTime toDate) { return []; } public List GetAllSalesByWorkerByPeriod(string workerId, DateTime fromDate, DateTime toDate) { return []; } public List GetAllSalesByBuyerByPeriod(string? buyerId, DateTime fromDate, DateTime toDate) { return []; } public List GetAllSalesByProductByPeriod(string productId, DateTime fromDate, DateTime toDate) { return []; } public SaleDataModel GetSaleByData(string data) { return new("", "", 0, false, []); } public void InsertSale(SaleDataModel saleDataModel) { } public void CancelSale(string id) { } }