14 lines
474 B
C#
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);
|
|
}
|
|
}
|