using Domain.Entities; using Domain.Generics; using Models.Models; namespace Models.Interfaces { public interface IPhLSMProductRepository { Task> SearchAsync(LSProductSearchParams searchParams); Task GetByIdAsync(int id); Task CreateAsync(ELSProduct entity); Task UpdateAsync(ELSProduct entity); Task DeleteAsync(int id); } }