2025-05-14 15:13:30 +10:00
|
|
|
|
using PARR.DAL.Models.Unit;
|
|
|
|
|
|
using PARR.DAL.Services.Interfaces.Base;
|
|
|
|
|
|
|
|
|
|
|
|
namespace PARR.DAL.Services.Interfaces.Unit
|
|
|
|
|
|
{
|
2025-05-21 11:53:07 +10:00
|
|
|
|
public interface IUnitFieldValueService: IBaseService<UnitFieldValue>
|
2025-05-14 15:13:30 +10:00
|
|
|
|
{
|
2025-05-21 11:53:07 +10:00
|
|
|
|
Task<UnitFieldValue?> GetByValueNameAsync(string? value);
|
2025-05-14 15:13:30 +10:00
|
|
|
|
}
|
|
|
|
|
|
}
|