using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; namespace Backend.Data.Interfaces { public interface ILigneCommandeRepository : IGenericRepository { List GetLigneCommandesOfDate(DateTime dateTimeRef); } }