Posts by Daniel Machado • 56 points
3 posts
-
2
votes1
answer246
viewsA: Perform a method after completion of a previous method in Angular
To solve your problem you can use a simple callback somarValoresIntervalo(callback) { for(let x = 1; x < this.intervalo; x++) { this.resultado += x; } callback() }…
-
1
votes2
answers954
viewsA: How to load a page into a div with Angular
That’s right, it’s missing the router-outlet directive, An output for router to issue an activation event whenever a new component is being instantiated. routerLinkActive allows you to add a css…
-
1
votes1
answer505
viewsQ: Inheritance with Relationship of 0:N using Nhibernate
I have the following situation: Person public class Pessoa { public Pessoa() { Endereco = new List<Endereco>(); } public virtual int IdPessoa { get; set; } public virtual string Nome { get;…