12 lines
303 B
C#
12 lines
303 B
C#
using PARR.DAL.Models.Unit;
|
|
using PARR.DAL.Services.Interfaces.Base;
|
|
|
|
namespace PARR.DAL.Services.Interfaces.Unit
|
|
{
|
|
public interface IUnitInUnitService
|
|
{
|
|
Task<List<UnitInUnit>> GetByParentIdAsync(Guid parentId);
|
|
Task<List<UnitInUnit>> GetByChildIdAsync(Guid childId);
|
|
}
|
|
}
|