Posts by Robss70 • 1,609 points
54 posts
-
3
votes2
answers445
viewsQ: App.Config Layered Project
Gentlemen, I have a layered application. In the business layer App.config I had to add the following code: <system.serviceModel> <bindings> <basicHttpBinding> <binding…
-
4
votes1
answer325
viewsQ: Methods with Dynamic C#parameter
I need your help with the following question. I have a data access class that has a method that takes the parameters to run a stored database. The problem is this, I have several objects in the…
-
9
votes3
answers2573
viewsQ: Is it possible to avoid using ifs in these cases?
I have read many materials on the internet about OOP, the overwhelming majority says to avoid if/else at all costs. For an OOP beginner like myself, many doubts arise. For example: if…
-
2
votes1
answer1688
viewsQ: Click button call different methods
I have a button that calls the click event btn_Salvar in my form. How do I call this event different methods according to who created the form in which the button is contained? EDIT: Explaining…