I intend to have one main module that displays the interfaces with which other large modules (different clients) will interact. If, say, there is a group of methods:
void Method_A();
void Method_B();
void Method_X1();
to open one type of client (module "X1") and:
void Method_A();
void Method_B();
void Method_X2();
to show other types of clients (module "X2") and knowing that Method_Athey Method_Bmust have an exact implementation ... whereas how can I best design a service architecture (in terms of services and contracts)?
Is it possible to implement Method_A and Method_B only once (not 2 times in different contract implementations)?
How do I use interface inheritance when using WCF?
, , , !
@marc_s... ...