* Added maintaining Products
* Extended DataModels * Extended API
This commit is contained in:
10
FaKrosnoEfDataModel/Services/IProductService.cs
Normal file
10
FaKrosnoEfDataModel/Services/IProductService.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using FaKrosnoEfDataModel.Dtos;
|
||||
|
||||
namespace FaKrosnoEfDataModel.Services;
|
||||
|
||||
public interface IProductService
|
||||
{
|
||||
Task<IEnumerable<ProductDto?>> GetEntities();
|
||||
Task<IEnumerable<ProductDto?>> GetEntitiesToFix(string indexName);
|
||||
Task UpdateEntity(ProductDto entity);
|
||||
}
|
||||
Reference in New Issue
Block a user