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/DjyApiAuth/IDjyApiAuthService.cs

17 lines
550 B
C#

2 years ago
using Myshipping.Core;
using Microsoft.AspNetCore.Mvc;
using System.Threading.Tasks;
using Myshipping.Application.Entity;
using Myshipping.Core.Entity;
namespace Myshipping.Core.Service
{
public interface IDjyApiAuthService
{
Task<dynamic> Page([FromQuery] QueryDjyApiAuthInput input);
2 years ago
Task<long> Save(SaveDjyApiAuthInput input);
2 years ago
Task Delete(GetDjyApiAuthInput input);
Task<DjyApiAuth> Get([FromQuery] GetDjyApiAuthInput input);
//Task<dynamic> List([FromQuery] QueryDjyApiAuthInput input);
}
}