11 lines
238 B
C#
11 lines
238 B
C#
using Entities.Contracts;
|
|
using Entities.DTO;
|
|
|
|
namespace TechHelper.Client.Services
|
|
{
|
|
public interface ICommonService
|
|
{
|
|
public Task<List<TypeCommonDto>> GetCommonTypesAsync(TypeNameType typeNameType, Guid? SubjectId = null);
|
|
}
|
|
}
|