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.Application/Service/BookingOrder/IBookingOrderService.cs

32 lines
870 B
C#

2 years ago
using Myshipping.Core;
using Microsoft.AspNetCore.Mvc;
using System.Threading.Tasks;
using Myshipping.Application.Entity;
2 years ago
using Myshipping.Application.Service.BookingOrder.Dto;
2 years ago
using Microsoft.AspNetCore.Http;
2 years ago
namespace Myshipping.Application
2 years ago
{
public interface IBookingOrderService
{
Task Add(AddBookingOrderInput input);
2 years ago
Task Delete(long Id);
2 years ago
Task Update(UpdateBookingOrderInput input);
2 years ago
Task<BookingOrderOutput> Get(long Id);
Task<dynamic> Page([FromQuery] BookingOrderInput input);
2 years ago
Task<BookingLogDto> GetLog(long Id);
2 years ago
Task<BookingRemark> GetRemark(long Id);
Task AddRemark(BookingRemarkDto dto);
2 years ago
Task AddFile(IFormFile file, [FromForm] BookingFileDto dto);
Task<BookingFile> GetFile(long Id);
2 years ago
Task SendTrace(string YARDID, string YARD, string MBLNO);
2 years ago
}
}