Simple code implementation of some architectural patterns

I was wondering if anyone knew of any simple code implementations of the following architectural patterns (in Java or C #):

* Blackboard (passive & active)
* Presentation Abstraction Control (PAC)
* MVC

Thanks in advance

+3
source share
3 answers

The following link will provide a java implementation of a presentation abstraction management template:

http://www.vico.org/pages/PatronsDisseny/Pattern%20Presentation%20Abstra/

The following is an article on the MVC pattern:

http://www.c-sharpcorner.com/UploadFile/rmcochran/MVC_intro12122005162329PM/MVC_intro.aspx

+2
source

There are many examples in different languages ​​that await you only in wikipedia ...

+1
source

Source: https://habr.com/ru/post/1746783/


All Articles