using System.Collections.Generic; using System.ServiceModel; using System.Threading.Tasks; namespace Kean.Presentation.Rest.Soaps.Contracts { [ServiceContract] public interface IAgvApplyService { [OperationContract] public Task AgvApplyIn(string barcode, List sfc); } }