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/DjyCustomer/IDjyCustomerService.cs

20 lines
698 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<long> Add(AddDjyCustomerInput input);
Task<long> 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);
}
}