Posts by Felipe Lastowizka • 101 points
5 posts
-
10
votes3
answers8860
viewsA: Ionic is not recognized as an internal command
For some reason during npm installation no environment variable was added. Add inside of Path: C: Users my.user Appdata Roaming npm
ionicanswered Felipe Lastowizka 101 -
-2
votes2
answers809
viewsA: Pass parameters via jquery to my model
In your controller method you will receive your model. In order for the values of your model to be correctly populated in the controller it will be necessary that in the View you use the fields with…
-
0
votes3
answers233
viewsA: nullable on the models?
Exactly, the nullable will be so that you do not use the default values of each type. Now the Dataanottation you will use for a part control.
-
0
votes2
answers84
viewsA: Doubt Web Layout
This will depend a lot on your need. Using a framework like Bootstrap at first would take a while for the learning issue. In return it would help you to make your page responsive, and in the…
-
0
votes4
answers671
viewsA: Can I use Repository to do the BLL part?
You can abstract Repository in an extra layer in your application, and it’s not wrong to apply your business rules within it. It would be wrong if you were doing this directly at DAO