Guest User

Untitled

a guest
Nov 23rd, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. public class Foo
  2. {
  3. ISomeService service;
  4.  
  5. public Foo(ISomeService service)
  6. {
  7. this.service = service;
  8. }
  9.  
  10. public void Do_something()
  11. {
  12. service.Perform_task();
  13. }
  14. }
Add Comment
Please, Sign In to add comment