Files
FA_WEB/FaKrosnoEfDataModel/Services/IProductService.cs
Piotr Kus 0eaf941021 * Added maintaining Products
* Extended DataModels
* Extended API
2025-03-29 21:37:36 +01:00

10 lines
273 B
C#

using FaKrosnoEfDataModel.Dtos;
namespace FaKrosnoEfDataModel.Services;
public interface IProductService
{
Task<IEnumerable<ProductDto?>> GetEntities();
Task<IEnumerable<ProductDto?>> GetEntitiesToFix(string indexName);
Task UpdateEntity(ProductDto entity);
}