Files
parr_api/PARR.DAL/Services/Interfaces/IApplicationInWorkService.cs
2023-09-20 11:52:30 +10:00

10 lines
205 B
C#

using PARR.DAL.Models;
using PARR.DAL.Services.Interfaces.Base;
namespace PARR.DAL.Services.Interfaces
{
public interface IApplicationInWorkService : IBaseService<ApplicationsInWork>
{
}
}