ISampleService.cs 541 Bytes
using System.Collections;
using System.Collections.Generic;
using System.ServiceModel;
using System.Threading.Tasks;
using System.Xml.Serialization;
using WebMvc.Areas.WebService;
using WebRepository;

namespace WebMvc.Areas.WebService
{
	[ServiceContract(Namespace= "http://schemas.datacontract.org/2004/07/WebMvc.Areas.WebService")]
    public interface ISampleService
	{
		[OperationContract]
		string Ping(string Request);

        [OperationContract]
        ReceiptResponse ReceiptService(MaterialsInformation[] materials);
    }
}