oop_II-6/EHEC_Server/EHEC_Server/IService.cs

33 lines
740 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.ServiceModel;
using System.Text;
namespace EHEC_Server
{
// NOTE: You can use the "Rename" command on the "Refactor" menu to change the interface name "IService" in both code and config file together.
[ServiceContract]
public interface IService
{
2018-06-22 16:29:27 +02:00
[OperationContract]
2018-06-17 19:42:15 +02:00
void WriteDoctor(Doctor doctor);
[OperationContract]
void WritePatient(Patient patient);
[OperationContract]
void WriteOrigin(Origin origin);
[OperationContract]
void WriteExam(Exam exam);
[OperationContract]
void WriteResult(Result result);
}
}