Skip to content

Instantly share code, notes, and snippets.

View ClausPolanka's full-sized avatar

Claus Polanka ClausPolanka

View GitHub Profile
@ralfw
ralfw / layered.cs
Last active July 22, 2022 07:14
Layered design vs stratified design
using System;
using System.Linq;
namespace layered
{
class MainClass
{
public static void Main(string[] args) {
var data = new DataLayer();
var business = new BusinessLayer(data);