using Yw.CAL.HttpClient;
|
|
namespace HStation.CAL.HttpClient
|
{
|
/// <summary>
|
/// 图表关联
|
///</summary>
|
public class PhartDiagramRelation : BaseCAL_Sorter<AddPhartDiagramRelationInput, UpdatePhartDiagramRelationInput, PhartDiagramRelationDto>, IPhartDiagramRelation
|
{
|
protected override string Prefix
|
{
|
get { return $"{BLL.PhartRelation.ConfigHelper.HttpUrl}/PhartDiagramRelation"; }
|
}
|
|
public Task<List<PhartDiagramRelationExtensionsDto>> GetExByObjectTypeAndObjectID(string ObjectType, string ObjectID)
|
{
|
throw new NotImplementedException();
|
}
|
|
public Task<PhartDiagramRelationExtensionsDto> GetDefaultExByObjectTypeAndObjectID(string ObjectType, string ObjectID)
|
{
|
throw new NotImplementedException();
|
}
|
|
public Task<long> InsertEx(PhartDiagramRelationDto relation, PhartDiagramDto diagram, List<PhartGraphDto> graphList)
|
{
|
throw new NotImplementedException();
|
}
|
|
public Task<bool> UpdateDescription(long ID, string Description)
|
{
|
throw new NotImplementedException();
|
}
|
|
public Task<bool> UpdateEx(PhartDiagramRelationDto relation, PhartDiagramDto diagram, List<PhartGraphDto> graphList)
|
{
|
throw new NotImplementedException();
|
}
|
|
public Task<bool> UpdateImportance(long ID, int Importance)
|
{
|
throw new NotImplementedException();
|
}
|
|
public Task<bool> UpdateOtherName(long ID, string OtherName)
|
{
|
throw new NotImplementedException();
|
}
|
public Task<bool> DeleteByDiagramID(long DiagramID)
|
{
|
throw new NotImplementedException();
|
}
|
|
public Task<bool> DeleteByObjectTypeAndObjectID(string ObjectType, long ObjectID)
|
{
|
throw new NotImplementedException();
|
}
|
|
|
}
|
|
}
|
|
|
|