using Domain.Entities; namespace Models.Interfaces { public interface IPhSDeliveryNoteRepository { Task GetByIdAsync(int id); Task GetByDeliveryNoteNumberAsync(string deliveryNoteNumber); Task> GetByQuoteIdAsync(int quoteId); } }