Advertisement
taisonik

Untitled

Jul 16th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.22 KB | None | 0 0
  1. [ServiceContract]
  2. public interface IEmployeeInfo
  3. {
  4.  
  5.     [OperationContract]
  6.     [WebGet (ResponseFormat= WebMessageFormat.Json, UriTemplate="GetEmployee/?key={employeeId}")]
  7.     Employee GetEmployee(int employeeId);
  8.  
  9.    
  10.  
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement