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.Web.Mvc; | |
namespace NewInMVC3.ModelBinder | |
{ | |
public class GenericModelBinderProvider : IModelBinderProvider | |
{ | |
public IModelBinder GetBinder(Type modelType) | |
{ | |
var genericType = typeof (IModelBinder<>).MakeGenericType(modelType); |
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; | |
namespace Aperea.iCalendar | |
{ | |
public class Calendar | |
{ | |
public void SetTime(DateTime dateTime) | |
{ | |
} |
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.ComponentModel.DataAnnotations; | |
namespace Regularly.DomainObjects | |
{ | |
public abstract class DomainObject | |
{ | |
protected DomainObject() | |
{ | |
NewerOlder