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-22 09:08:11 +10:00
|
|
|
|
Task<Models.Unit.Unit?> GetByName(string name);
|
2025-05-14 15:13:30 +10:00
|
|
|
|
}
|
|
|
|
|
|
}
|