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-05-19 16:09:55 +10:00
|
|
|
|
Task<Models.Unit.Unit?> GetUnitWithFieldsAsync(string name);
|
2025-05-14 15:13:30 +10:00
|
|
|
|
}
|
|
|
|
|
|
}
|