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.
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
using Myshipping.Application.Event;
|
|
|
|
|
using Myshipping.Application.Service.BookingSlot.Dto;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Myshipping.Application
|
|
|
|
|
{
|
|
|
|
|
public interface IBookingSlotService
|
|
|
|
|
{
|
|
|
|
|
Task ApiReceive(BookingSlotBaseApiDto dto);
|
|
|
|
|
Task<BookingSlotBaseSaveOutput> Detail(long id);
|
|
|
|
|
Task<List<BookingSlotBaseWithCtnDto>> GetAvailableSlots(BookingSlotBaseDto slotInput = null, List<long> slotIdListInput = null);
|
|
|
|
|
Task<List<BookingSlotBaseWithCtnDto>> GetAvailableSlots(BookingSlotBaseDto input);
|
|
|
|
|
Task<dynamic> PageStock(BookingSlotStockPageInput input);
|
|
|
|
|
Task RefreshStock(BookingSlotStockUpdateModel input);
|
|
|
|
|
Task<BookingSlotBaseSaveOutput> Save(BookingSlotBaseSaveInput input);
|
|
|
|
|
}
|
|
|
|
|
}
|