Guest User

Untitled

a guest
Jun 25th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. public class Example {
  2. private DatabaseThingie myDatabase;
  3.  
  4. // Database nesnesi kurucu metot parametresi olarak inject edilmiş
  5. public Example(DatabaseThingie useThisDatabaseInstead) {
  6. myDatabase = useThisDatabaseInstead;
  7. }
  8.  
  9. public void DoStuff() {
  10. ...
  11. myDatabase.GetData();
  12. ...
  13. }
  14. }
Add Comment
Please, Sign In to add comment