Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@M0ns1gn0r
M0ns1gn0r / Domain.cs
Last active September 12, 2017 08:52
MotherFactory pattern
public class PostCode
{
public PostCode() {}
public PostCode(string postcode) {}
}
public class Address
{
public Address(string street, string city, PostCode postCode) {}
}
// Download NuGet packages "Akka" and "Akka.FSharp" to get these dlls.
#r @"System.Collections.Immutable.dll"
#r @"Newtonsoft.Json.dll"
#r @"Akka.dll"
#r @"Akka.FSharp.dll"
open Akka.Actor
open Akka.FSharp