using Yw.CAL.HttpClient;
|
|
namespace HStation.CAL.HttpClient
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public class XhsProject : BaseCAL_Paras_Flags_TagName_Sorter_UseStatus<AddXhsProjectInput, UpdateXhsProjectInput, XhsProjectDto>, IXhsProject
|
{
|
protected override string Prefix
|
{
|
get { return $"{HStation.BLL.Xhs.ConfigHelper.HttpUrl}/Xhs/Project"; }
|
}
|
|
public Task<bool> DeleteEx(long ID)
|
{
|
return default;
|
}
|
|
public async Task<long> InsertEx(AddXhsProjectInput projectInput, AddXhsProjectItemInput itemInput, AddXhsProjectItemModelInput modelInput, AddXhsProjectItemModelMapInput MapInput)
|
{
|
// return await GetUrl("InsertEx@V1.0").Post<long>(projectInput, itemInput, modelInput, MapInput);
|
throw new NotImplementedException();
|
}
|
|
public Task<bool> UpdateEx(UpdateXhsProjectInput projectInput, UpdateXhsProjectItemInput itemInput)
|
{
|
throw new NotImplementedException();
|
}
|
}
|
}
|