Exemplo n.º 1
0
 public Chausette(int size, Sock_Color color)
 {
     if (size > 50)
     {
         throw new IncorrectSockSizeException();
     }
     this.size  = size;
     this.color = color;
 }
Exemplo n.º 2
0
 public Chausette(int size, Sock_Color color, int owner_ID)
 {
     this.size     = size;
     this.color    = color;
     this.Owner_ID = owner_ID;
 }
Exemplo n.º 3
0
 public Chausette(int size, Sock_Color color)
 {
     this.size  = size;
     this.color = color;
 }