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/BookingLabel/IBookingLabelService.cs

12 lines
272 B
C#

6 months ago
using Myshipping.Application.Service.BookingLabel.Dto;
6 months ago
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Myshipping.Application
{
6 months ago
public interface IBookingLabelService
6 months ago
{
6 months ago
Task<List<BookingLabelBaseDto>> List(int? scope);
6 months ago
}
}