You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
BookingHeChuan/Myshipping.Core/Service/DjyTenantParam/IDjyTenantParamService.cs

20 lines
618 B
C#

2 years ago
using Myshipping.Core;
using Microsoft.AspNetCore.Mvc;
using System.Threading.Tasks;
using Myshipping.Application.Entity;
using System.Collections.Generic;
namespace Myshipping.Core.Service
{
public interface IDjyTenantParamService
{
Task Add(AddDJYTenantParamInput input);
Task Update(UpdateDJYTenantParamInput input);
Task Delete(long Id);
Task<List<DjyTenantParam>> Get(string Type);
Task<List<DjyTenantParamItem>> GetParamItem(string ParaCode);
Task AddParamItem(DjyTenantParamItem input);
Task UpdateParamItem(DjyTenantParamItem input);
}
}