Guest User

Untitled

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