Advertisement
Mihailo21

Client.cs

Apr 19th, 2024
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.59 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.ServiceModel;
  7. using Common;
  8.  
  9. namespace Client
  10. {
  11.     public class Program
  12.     {
  13.         static void Main(string[] args)
  14.         {
  15.             ChannelFactory<IApoteka> factory = new ChannelFactory<IApoteka>("ApotekaService");
  16.             IApoteka proxy = factory.CreateChannel();
  17.  
  18.             Lek lek1 = new Lek(1, "Brufen", 20, new List<string> { "Jabuka", "Kruska", "Dinja" });
  19.  
  20.  
  21.             proxy.DodajLek(lek1);
  22.  
  23.             IspisiSveLekove(proxy.dobaviSveLekove());
  24.  
  25.             proxy.PromeniKolicinuLek(1, 5, false);
  26.  
  27.             IspisiSveLekove(proxy.PronadjiLekNaOsnovuSastojka("Jabuka"));
  28.  
  29.             try
  30.             {
  31.                 proxy.PromeniKolicinuLek(1, 80, false);
  32.             }catch(FaultException<CustomException> ex)
  33.             {
  34.                 Console.WriteLine("Err: "+ex.Message);
  35.             }
  36.  
  37.             try
  38.             {
  39.                 proxy.ObrisiLek(45);
  40.             }
  41.             catch (FaultException<CustomException> ex)
  42.             {
  43.                 Console.WriteLine("Err: " + ex.Message);
  44.             }
  45.  
  46.             Console.WriteLine("Pritisni taster za kraj");
  47.             Console.ReadKey();
  48.         }
  49.  
  50.         private static void IspisiSveLekove(List<Lek> lekovi)
  51.         {
  52.             Console.WriteLine("------Lekovi-----");
  53.             foreach(Lek lek in lekovi)
  54.             {
  55.                 Console.WriteLine(lek);
  56.             }
  57.             Console.WriteLine("------------");
  58.         }
  59.     }
  60. }
  61.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement