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.FlowCenter/FormManage/IFlcFormManageService.cs

16 lines
522 B
C#

using Myshipping.FlowCenter.Entity;
using Microsoft.AspNetCore.Mvc;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Myshipping.FlowCenter.Service;
public interface IFlcFormManageService
{
Task AddForm(AddFlcFormInput input);
Task DeleteForm(DeleteFlcFormInput input);
Task<FlcForm> GetForm([FromQuery] QueryFlcFormInput input);
Task<List<FlcFormOutput>> GetFormList([FromQuery] FlcFormInput input);
Task<dynamic> QueryFormPageList([FromQuery] PageFlcFormInput input);
}