Skip to content

Instantly share code, notes, and snippets.

@mattpodwysocki
Created January 29, 2009 16:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattpodwysocki/54622 to your computer and use it in GitHub Desktop.
Save mattpodwysocki/54622 to your computer and use it in GitHub Desktop.
#light
type ICustomerRepository =
abstract GetCustomersWithFirstNameOf : string -> seq<Customer>
let test_lookup() =
let repository = { new ICustomerRepository with
member this.GetCustomersWithFirstNameOf(name) =
[{ CustomerName = name; Address = "1 Microsoft Way"; City = "Redmond"; State = "WA" }]
}
// Do additional work here
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment