Spaces:
Running
Running
| 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); | |
| } | |
| } | |