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