using Myshipping.Core.Entity;
using Microsoft.AspNetCore.Mvc;
using System.Threading.Tasks;
using System.Collections.Generic;
namespace Myshipping.Core.Service;
public interface ICommonDBService
{
///
/// 获取船公司
///
///
Task> GetAllCarrier();
///
/// 获取船公司映射
///
///
Task> GetAllMappingCarrier();
///
/// 获取船名
///
///
Task> GetAllVessel();
///
/// 获取船名映射
///
///
Task> GetAllMappingVessel();
///
/// 获取船代
///
///
Task> GetAllForwarder();
///
/// 获取场站
///
///
Task> GetAllYard();
///
/// 获取起始港
///
///
Task> GetAllPortload();
///
/// 获取目的港
///
///
Task> GetAllPort();
///
/// 获取包装
///
///
Task> GetAllPackage();
///
/// 获取运输方式
///
///
Task> GetAllService();
///
/// 获取箱型
///
///
Task> GetAllCtn();
///
/// 获取箱型映射
///
///
Task> GetAllMappingCtn();
///
/// 付费方式
///
///
Task> GetAllFrt();
///
/// 付费方式映射
///
Task> GetAllMappingFrt();
}