using PARR.DAL.Models.V1; using PARR.DAL.Services.Interfaces.Base; namespace PARR.DAL.Services.Interfaces { public interface IApplicationService : IBaseService { Task GetByNameAsync(string appName); } }