Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am yadazula on github.
  • I am yadazula (https://keybase.io/yadazula) on keybase.
  • I have a public key whose fingerprint is D1F0 945C 7DA8 B0E0 B447 D6F3 91D9 D62D 0EB8 98EA

To claim this, I am signing this object:

@yadazula
yadazula / JsonType.cs
Created March 12, 2012 08:49
JsonType
[Serializable]
public class JsonType<T> : IUserType
{
public new bool Equals(object x, object y)
{
if (x == null && y == null)
return true;
if (x == null || y == null)
return false;
@yadazula
yadazula / DependencyInjectionStartupTask.cs
Created February 13, 2012 09:44
structuremap-mvc integration
using System.Linq;
using System.Web.Mvc;
using StructureMap;
namespace Configuration.Startup
{
public class DependencyInjectionStartupTask : IStartupTask
{
public void Execute(IContainer container)
{