10 lines
176 B
C#
10 lines
176 B
C#
using PARR.DAL.Models;
|
|
using PARR.DAL.Services.Interfaces.Base;
|
|
|
|
namespace PARR.DAL.Services.Interfaces
|
|
{
|
|
public interface ITnkService : IBaseService<Tnk>
|
|
{
|
|
}
|
|
}
|