using System; using System.Collections.Generic; using System.Threading.Tasks; using StockMaster.Models; namespace StockMaster.Services { public interface ISaleService { Task> GetAllSalesAsync(); Task GetSaleByIdAsync(int id); Task CreateSaleAsync(Sale sale); Task GetTotalSalesAmountAsync(DateTime? startDate = null, DateTime? endDate = null); } }