Skip to content

Instantly share code, notes, and snippets.

View sheastrickland's full-sized avatar

Shea Strickland sheastrickland

View GitHub Profile
@sheastrickland
sheastrickland / ControllerContextHost.cs
Created April 11, 2011 22:33
Windsor MvcFacility - Early hacks
using System;
using System.Linq;
using System.Web.Mvc;
using System.Web.Routing;
namespace VMS.Domain.WindsorMvcFacility
{
public class ControllerContextHost
{
private ControllerBase controller;
@sheastrickland
sheastrickland / AbcPdfDocumentGenerator.cs
Created March 30, 2011 09:10
AbcPdf in ASP.Net Mvc
public class AbcPdfDocumentGenerator : IDocumentGenerator
{
public string ContentType
{
get { return "application/pdf"; }
}
public string FileExtension
{
get { return "pdf"; }