Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 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.  
  7. namespace rpcAukcio
  8. {
  9. interface IKaukcios
  10. {
  11. bool Login(string user,string passwd);
  12. void Hozzad(string nev, string kod);
  13. void Lista();
  14. void Licit(string kod, int ar);
  15.  
  16.  
  17. }
  18.  
  19. interface IPeldanygen
  20. {
  21. public string Peldanygeneral();
  22. }
  23.  
  24. [Serializable]
  25. public class Termek
  26. {
  27. public Termek()
  28. {
  29.  
  30. }
  31. public Termek(string megnevezes, string kod, int ar, string user)
  32. {
  33. Ar = ar;
  34. Neve = megnevezes;
  35. Kod = kod;
  36. LoginName = user;
  37. }
  38. int _ar;
  39. public int Ar
  40. {
  41. get { return this._ar; }
  42. set { _ar = value; }
  43. }
  44. string _kod;
  45. public string Kod
  46. {
  47. get { return this._kod; }
  48. set { _kod = value; }
  49. }
  50. string _neve;
  51. public string Neve
  52. {
  53. get { return this._neve; }
  54. set { _neve = value; }
  55. }
  56. string _loginName;
  57. public string LoginName
  58. {
  59. get { return this._loginName; }
  60. set { _loginName = value; }
  61. }
  62. }
  63. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement