Advertisement
Guest User

customer_cs_kram1

a guest
Oct 24th, 2014
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. namespace AccountQuery
  3. {
  4.     public class Customer
  5.     {
  6.         private int pin;
  7.         public int Pin
  8.         {
  9.             get { return pin; }
  10.             set { pin = value; }
  11. // ein Getter für ne PIN ist irgenwie unsicher..... :D
  12.         }
  13.  
  14.         public Customer(int pin)
  15.         {
  16.             this.pin = pin;
  17.  
  18.         }
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement