11 lines
260 B
C#
11 lines
260 B
C#
using PARR.DAL.Models.V1;
|
|
using PARR.DAL.Services.Interfaces.Base;
|
|
|
|
namespace PARR.DAL.Services.Interfaces
|
|
{
|
|
public interface IApplicationService : IBaseService<V1_Application>
|
|
{
|
|
Task<V1_Application?> GetByNameAsync(string appName);
|
|
}
|
|
}
|