Advertisement
Guest User

Untitled

a guest
Aug 31st, 2015
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. namespace unpaidrpt;
  2.  
  3. interface
  4.  
  5. uses
  6.   System.Collections.Generic,
  7.   System.Linq,
  8.   System.Windows,
  9.   System.Windows.Controls,
  10.   System.Windows.Data,
  11.   System.Windows.Documents,
  12.   System.Windows.Media,
  13.   System.Windows.Navigation,
  14.   System.Windows.Shapes;
  15.  
  16. type
  17.   EditDetails = public partial class(System.Windows.Window)
  18.   private
  19.   public
  20.     AdToEdit : UnpaidAd;
  21.     constructor;
  22.     constructor(AAdInfo : UnpaidAd);
  23.   end;
  24.  
  25. implementation
  26.  
  27. constructor EditDetails;
  28. begin
  29.   InitializeComponent();
  30. end;
  31.  
  32. constructor EditDetails(AAdInfo: UnpaidAd);
  33. begin
  34.   AdToEdit := AAdinfo;
  35.  
  36.   inherited;
  37. end;
  38.  
  39. end.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement