using FlowAPI.Application.DTOs.Edge; namespace FlowAPI.Application.Interfaces { public interface IEdgeService { Task> GetAllByGraphIdAsync(Guid graphId); Task GetByIdAsync(Guid id); Task CreateAsync(CreateEdgeDto dto); Task DeleteAsync(Guid id); } }