/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Main;
import Controller.ContactController;
import Model.ContactModel;
import View.FileView;
public class ContactsMVC {
public static void main(String[] args) {
ContactModel model = new ContactModel();
FileView fView = new FileView(model);
ContactController controller = new ContactController(model, fView);
fView.setVisible(true);
}
}