Advertisement
OlegB

dsasdfasdfafd

Mar 29th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.26 KB | None | 0 0
  1. package model;
  2.  
  3. /**
  4.  * Created by Oleg on 23.03.2017.
  5.  */
  6. public class Finance {
  7.     public String name;
  8.     public String adress;
  9.  
  10.     public Finance(String name, String adress) {
  11.         this.name = name;
  12.         this.adress = adress;
  13.  
  14.  
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement