10 lines
197 B
C#
10 lines
197 B
C#
using PARR.DAL.Models.Unit;
|
|
using PARR.DAL.Services.Interfaces.Base;
|
|
|
|
namespace PARR.DAL.Services.Interfaces.Unit
|
|
{
|
|
public interface IUnitFieldService: IBaseService<UnitField>
|
|
{
|
|
}
|
|
}
|