IProductService.cs 333 B

123456789101112
  1. using Products.Common.Dtos;
  2. namespace Products.Business.Service;
  3. public interface IProductService
  4. {
  5. IEnumerable<ProductDto> GetProducts();
  6. ProductDto GetProduct(int id);
  7. ProductDto AddProduct(CreateProductDto product);
  8. ProductDto UpdateProduct(int id, UpdateProductDto productDto);
  9. void DeleteProduct(int id);
  10. }