using FamilyTreeAPI.Entities; namespace FamilyTreeAPI.Interface; public interface IRelationShipd { Task> SaveAsync(List dto); //load by personId Task>> GetByPersonIdAsync(int personId); Task> GetByIdAsync(int Id); Task> DeleteAsync(int personId); }