Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. public abstract class MyStrategy
  2. {
  3. public IStorageMethod StorageMethod;
  4. }
  5.  
  6. public class DbTaskRepository : MyStrategy
  7. {
  8. add
  9. delete
  10. ....
  11. }
  12.  
  13. public class MemoryTaskRepository: MyStrategy
  14. {
  15. add
  16. delete
  17. ....
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement