using Products.Common.Dtos; namespace Products.Business.Service; public interface IProductService { IEnumerable GetProducts(); ProductDto GetProduct(int id); ProductDto AddProduct(CreateProductDto product); ProductDto UpdateProduct(int id, UpdateProductDto productDto); void DeleteProduct(int id); }