Advertisement
Guest User

Untitled

a guest
Jul 24th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. public MyClassConstructor (IAclass A, IBclass B, .... , IZclass Z){
  2. ...
  3. }
  4.  
  5. public MyClassConstructor (IDataServices dataServices){...}
  6.  
  7. public MyClassConstructor (IMainInterface mainInterface) {
  8. A = new A(mainInterface);
  9. B = new B(mainInterface);
  10. }
  11.  
  12. public AClassContructor (IAInterface) {...}
  13.  
  14. public BClassContructor (IBInterface) {...}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement