2025-05-14 15:13:30 +10:00
|
|
|
|
using PARR.DAL.Services.Interfaces.Base;
|
|
|
|
|
|
|
|
|
|
|
|
namespace PARR.DAL.Services.Interfaces.Unit
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IUnitService : IBaseService<Models.Unit.Unit>
|
|
|
|
|
|
{
|
2025-06-25 14:17:34 +10:00
|
|
|
|
IQueryable<Models.Unit.Unit> GetWithIncludes();
|
2025-05-14 15:13:30 +10:00
|
|
|
|
}
|
|
|
|
|
|
}
|