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.
29 lines
753 B
C#
29 lines
753 B
C#
using Furion.DependencyInjection;
|
|
using Furion.DynamicApiController;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.Extensions.Logging;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application.Service.BookingOrder
|
|
{
|
|
/// <summary>
|
|
/// 订舱自动化相关
|
|
/// </summary>
|
|
[ApiDescriptionSettings("Application", Name = "BookingOrderAuto", Order = 1)]
|
|
public class BookingOrderAutoService : IDynamicApiController, ITransient
|
|
{
|
|
private readonly ILogger<BookingOrderAutoService> _logger;
|
|
|
|
public BookingOrderAutoService(ILogger<BookingOrderAutoService> logger)
|
|
{
|
|
_logger = logger;
|
|
}
|
|
|
|
|
|
}
|
|
}
|