14 lines
258 B
C#
14 lines
258 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using WMS.Web.Core.Dto;
|
|
|
|
namespace WMS.Web.Domain.IService.Public
|
|
{
|
|
public interface IOpsService
|
|
{
|
|
Task GetBox(OpsBoxRequest request);
|
|
}
|
|
}
|