Core.Blueprint.DAL/Core.Blueprint.DAL.Service/Contracts/IBlueprintService.cs
Sergio Matias Urquin 6358f5f199 Add project files.
2025-04-29 18:39:57 -06:00

14 lines
474 B
C#

using Core.Blueprint.Domain.Entities;
namespace Core.Blueprint.DAL.Service.Contracts
{
public interface IBlueprintService
{
ValueTask<BlueprintCollection> CreateAsync(BlueprintCollection entity);
ValueTask<bool> DeleteAsync(string id);
ValueTask<IEnumerable<BlueprintCollection>> GetAllAsync();
ValueTask<BlueprintCollection> GetByIdAsync(string id);
Task<bool> UpdateAsync(string id, BlueprintCollection entity);
}
}