Advertisement
Guest User

Untitled

a guest
Dec 12th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.48 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Runtime.Serialization;
  5. using System.ServiceModel;
  6. using System.Text;
  7.  
  8. namespace WcfServiceContract
  9.  
  10. {
  11.     [ServiceContract]
  12.     public interface Ikalkulator
  13.     {
  14.         [OperationContract]
  15.         double Dodaj(double n1, double n2);
  16.         [OperationContract]
  17.         double Odejmij(double n1, double n2);
  18.         [OperationContract]
  19.         double Pomnoz(double n1, double n2);
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement