10 lines
207 B
C#
10 lines
207 B
C#
using Entities.DTO;
|
|
|
|
namespace TechHelper.Services.Beta
|
|
{
|
|
public interface ISchoolService : IBaseService<SchoolDto, Guid>
|
|
{
|
|
Task<ApiResponse> GetSchoolByNameAsync(string schoolName);
|
|
}
|
|
}
|