public bool CreateDataBase() { bool x = false; using (var repository = new ApplicationRepository()) { this.Messaje = "Creando Base"; this.Messaje= repository.CreateDataBase(); this.Messaje = "fin"; x = true; } return x; }
public void ValidationDataBase() { using (var repository = new ApplicationRepository()) { this.IsFirstApp = repository.ValidationDataBase(); this.AppPath = repository.GetAppPath(); } }