Skip to content

Commit 819e42c

Browse files
authored
Update Readme.md
1 parent a2debc2 commit 819e42c

File tree

1 file changed

+1
-1
lines changed
  • Behavioral_Patterns/Command_Design_Pattern

1 file changed

+1
-1
lines changed

Behavioral_Patterns/Command_Design_Pattern/Readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Let's say there are 4 buttons and each button does different operations. Instead
3333

3434
- Every command should have a common interface. I created an ["ICommand"](https://github.com/oguzhanKomcu/Design_Patterns/blob/master/Behavioral_Patterns/Command_Design_Pattern/ICommand.cs). interface for it.
3535

36-
- I created my objects ( [Save](https://github.com/oguzhanKomcu/Design_Patterns/blob/master/Creational_Patterns/Builder_Pattern/Builder/TelephoneBuilder.cs), [Opening](https://github.com/oguzhanKomcu/Design_Patterns/blob/master/Creational_Patterns/Builder_Pattern/Builder/TelephoneBuilder.cs), [Closing](https://github.com/oguzhanKomcu/Design_Patterns/blob/master/Creational_Patterns/Builder_Pattern/Builder/TelephoneBuilder.cs) ) that will receive the order.
36+
- I created my objects ( [Save](https://github.com/oguzhanKomcu/Design_Patterns/blob/master/Creational_Patterns/Builder_Pattern/Builder/TelephoneBuilder.cs), [Opening](https://github.com/oguzhanKomcu/Design_Patterns/blob/master/Creational_Patterns/Builder_Pattern/Builder/TelephoneBuilder.cs), [Closing](https://github.com/oguzhanKomcu/Design_Patterns/blob/master/Creational_Patterns/Builder_Pattern/Builder/TelephoneBuilder.cs)) that will receive the order.
3737

3838
- To run the target method, I created the ExecuteAll() procedure of the invoker object I created. The client will directly run the commands with this method in this class.[GitHub Pages](https://github.com/oguzhanKomcu/Design_Patterns/blob/master/Behavioral_Patterns/Command_Design_Pattern/InvokerFileOperations.cs).
3939

0 commit comments

Comments
 (0)