git_bsmd/nsw/Source/bsmd.dbh.ResponseService/IResponseService.cs
2015-04-23 06:02:43 +00:00

31 lines
956 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.ServiceModel;
using System.ServiceModel.Web;
using System.Text;
namespace bsmd.dbh.ResponseService
{
// NOTE: You can use the "Rename" command on the "Refactor" menu to change the interface name "IService1" in both code and config file together.
[ServiceContract]
public interface IResponseService
{
/*
[OperationContract]
string GetData(int value);
*/
/// <summary>
/// Da die Schnittstelle nur mit einem .xsd definiert war ist die Signatur der Methode fraglich
/// Sicher ist Void, weniger sicher der Namen und der Name des Parameters. Dessen Type allerdings schon.
/// </summary>
[OperationContract]
[XmlSerializerFormatAttribute()]
void NSWResponse(bsmd.dbh.response.Root root);
}
}