#1321 Added UML diagram

This commit is contained in:
Ashish Trivedi
2020-07-27 00:39:53 +05:30
parent 4017c37b6f
commit 12d392931e
5 changed files with 90 additions and 22 deletions

View File

@@ -1,19 +1,15 @@
--- # this is so called 'Yaml Front Matter', read up on it here: http://jekyllrb.com/docs/frontmatter/
layout: pattern # layout must always be pattern
title: Best Pattern Ever # the properly formatted title
folder: best-pattern-ever # the folder name in which this pattern lies
permalink: /patterns/best-pattern-ever/ # the permalink to the pattern, to keep this uniform please stick to /patterns/FOLDER/
description: # short meta description that shows in Google search results
# both categories and tags are Yaml Lists
# you can either just pick one or write a list with '-'s
# usable categories and tags are listed here: https://github.com/iluwatar/java-design-patterns/blob/gh-pages/_config.yml
categories: creational # categories of the pattern
tags: # tags of the pattern
- best
- ever
- awesome
---
layout: pattern
title: Transaction script
folder: transaction-script
permalink: /patterns/transaction-script/
categories: Domain logic
tags:
- Data access
---
## Intent
Transaction script(TS) is mainly used in small applications where nothing complex is done and bigger architecture's are not needed.
## Name / classification
...
@@ -21,8 +17,6 @@ tags: # tags of the pattern
## Also known as
...
## Intent
...
## Explanation
...