oop_II-6/ServerWebApplication/ServerWebApplication/IServerService.cs

18 lines
463 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.ServiceModel;
using System.Text;
namespace ServerWebApplication
{
// NOTE: You can use the "Rename" command on the "Refactor" menu to change the interface name "IServerService" in both code and config file together.
[ServiceContract]
public interface IServerService
{
[OperationContract]
void DoWork();
}
}