Files
housemove3/Web/public/doc-code/application/interface.cs
路 范 c03092bc0c .
2021-09-24 14:33:10 +08:00

15 lines
287 B
C#

using System.Threading.Tasks;
namespace Ewide.Application.Service
{
public interface Interface
{
Task<dynamic> Page(DtoPageInput input);
Task Add(DtoAddInput input);
Task Update(DtoUpdateInput input);
Task Delete(DtoDeleteInput input);
}
}