ISampleService.cs 564 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,string msg);

        [OperationContract]
        ReceiptResponse ReceiptService(MaterialsInformation[] materials, string msg);
    }
}