using PARR.DAL.Models.Unit; using PARR.DAL.Services.Interfaces.Base; namespace PARR.DAL.Services.Interfaces.Unit { public interface IUnitInUnitService { Task> GetByParentIdAsync(Guid parentId); Task> GetByChildIdAsync(Guid childId); } }