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-19 16:09:55 +10:00
|
|
|
|
public interface IUnitFieldService : IBaseService<UnitField>
|
2025-05-14 15:13:30 +10:00
|
|
|
|
{
|
2025-05-19 16:09:55 +10:00
|
|
|
|
Task<UnitField?> GetByAihitNameAsync(string name);
|
2025-05-14 15:13:30 +10:00
|
|
|
|
}
|
|
|
|
|
|
}
|