10 lines
209 B
C#
10 lines
209 B
C#
using PARR.DAL.Models.Unit;
|
|
using PARR.DAL.Services.Interfaces.Base;
|
|
|
|
namespace PARR.DAL.Services.Interfaces.Unit
|
|
{
|
|
internal interface IUnitFieldValueService: IBaseService<UnitFieldValue>
|
|
{
|
|
}
|
|
}
|