Posts by André Mansur • 66 points
2 posts
-
3
votes1
answer288
viewsA: C# to Javascript Converter: ((object)Sender). attribute
See, in C#, you’re saying: ((Imagebutton)Sender). Imageurl -Grab the "Sender" object and cast it for type 'Imagebutton'; -With the resulting object (which is an instance of 'Imagebutton'), take the…
-
2
votes1
answer837
viewsA: How to organize CRUD methods for each table?
I think you should keep things within your scope. What has to do with employee, must be in the employee class, client to client, and so on. Imagine a scenario where you have 50 (common) entities.…