This repository has been archived on 2020-04-03. You can view files and clone it, but cannot push or open issues or pull requests.
ibz/oop/2018-05-05-services/2018-05-05-services/IFirstService.cs

18 lines
467 B
C#

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