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.
20 lines
686 B
C#
20 lines
686 B
C#
using Myshipping.Core;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using System.Threading.Tasks;
|
|
using Myshipping.Core.Entity;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Myshipping.Core.Service
|
|
{
|
|
public interface IDjyCustomerService
|
|
{
|
|
Task<dynamic> Page([FromQuery] QueryDjyCustomerInput input);
|
|
Task Add(AddDjyCustomerInput input);
|
|
Task Update(UpdateDjyCustomerInput input);
|
|
Task Delete(GetDjyCustomerInput input);
|
|
Task<DjyCustomerOutput> Detail([FromQuery] GetDjyCustomerInput input);
|
|
//Task<dynamic> List([FromQuery] QueryBookingCustomerInput input);
|
|
Task<List<DjyCustomerContactOutput>> ListContact(long customerId);
|
|
}
|
|
}
|