Skip to content

Instantly share code, notes, and snippets.

View ChadMcCallum's full-sized avatar

Chad McCallum ChadMcCallum

View GitHub Profile
@ChadMcCallum
ChadMcCallum / PunDataService.cs
Created July 22, 2014 14:02
Data layer class for 10 Ways to Build Web Services in .NET
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.Serialization.Formatters.Binary;
namespace Data
{
public class PunDataService
{
private List<Pun> Puns { get; set; }