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