15 lines
273 B
C#
15 lines
273 B
C#
using Syc.Basic.Web.WMS.Dto;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Syc.Basic.Web.WMS.IService
|
|
{
|
|
public interface IBoxService
|
|
{
|
|
Task InsertBox(BoxDto input);
|
|
}
|
|
}
|