using Yw.CAL.HttpClient;
|
|
namespace HStation.CAL.HttpClient
|
{
|
/// <summary>
|
/// 过渡件系数
|
///</summary>
|
public class AssetsTranslationFactor : BaseCAL<AddAssetsTranslationFactorInput, UpdateAssetsTranslationFactorInput, AssetsTranslationFactorDto>, IAssetsTranslationFactor
|
{
|
protected override string Prefix
|
{
|
get { return $"{HStation.BLL.Assets.ConfigHelper.HttpUrl}/Assets/Translation/Factor"; }
|
}
|
|
public Task<bool> UpdateSortCode(long ID, int SortCode)
|
{
|
throw new NotImplementedException();
|
}
|
|
public Task<bool> UpdateSorter(List<UpdateSortCodeInput> Sorters)
|
{
|
throw new NotImplementedException();
|
}
|
}
|
}
|