using PapaCarloContracts.DataModels; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PapaCarloContracts.BusinessLogicContracts; public interface ICuttingBusinessLogicContract { List GetAllCuttningsByPeriod(DateTime fromDate, DateTime toDate); List GetAllCuttingsByWorkerByPeriod(string workerId, DateTime fromDate, DateTime toDate); List GetAllCuttingsByBlankByPeriod(string blankId, DateTime fromDate, DateTime toDate); CuttingDataModel GetCuttingByData(string data); void InsertSale(CuttingDataModel cuttingDataModel); void CancelCutting(string id); }