danylokhodus's picture
init
b9c7f0e
Raw
History Blame Contribute Delete
365 Bytes
using FlowAPI.Application.DTOs.Edge;
namespace FlowAPI.Application.Interfaces
{
public interface IEdgeService
{
Task<IEnumerable<EdgeResponseDto>> GetAllByGraphIdAsync(Guid graphId);
Task<EdgeResponseDto?> GetByIdAsync(Guid id);
Task<EdgeResponseDto> CreateAsync(CreateEdgeDto dto);
Task<bool> DeleteAsync(Guid id);
}
}