This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Linq; | |
using System.Web.Mvc; | |
using System.Web.Routing; | |
namespace VMS.Domain.WindsorMvcFacility | |
{ | |
public class ControllerContextHost | |
{ | |
private ControllerBase controller; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class AbcPdfDocumentGenerator : IDocumentGenerator | |
{ | |
public string ContentType | |
{ | |
get { return "application/pdf"; } | |
} | |
public string FileExtension | |
{ | |
get { return "pdf"; } |
NewerOlder