I have an asp.net WebForm project, and i want to split up the logic in several projects:
I created 3 projects in the solution. -Frontend -Contract & -Backend
Contract consists of Models and a Contract Interface. Backend implements the Interface from Contract.
Is it possible from frontend to call the methods in Contract, without knowing the backend where the Interface are implemented?