10 lines
232 B
C#
10 lines
232 B
C#
using PARR.DAL.Services.Interfaces.Base;
|
|
|
|
namespace PARR.DAL.Services.Interfaces.Unit
|
|
{
|
|
public interface IUnitService : IBaseService<Models.Unit.Unit>
|
|
{
|
|
Task<Models.Unit.Unit?> GetUnitByName(string name);
|
|
}
|
|
}
|