using Backend.Domain.Entities; using Backend.Models; using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; namespace Backend.ApplicationCore.Interfaces.IServices { public interface ILigneCommandeService { Task> GetAllAsync(); Task CreateOrUpdateAsync(LigneCommandeDto LigneCommandeDto); Task DeleteByIdAsync(Guid Id); Task GetPrice(List ligneCommandes); } }