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 LogonTime | |
{ | |
public DayOfWeek DayOfWeek { get; set; } | |
public DateTime BeginTime { get; set; } | |
public DateTime EndTime { get; set; } | |
public LogonTime(DayOfWeek dayOfWeek, DateTime beginTime, DateTime endTime) | |
{ | |
DayOfWeek = dayOfWeek; | |
BeginTime = beginTime; |
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; | |
using System.Web.Mvc; | |
using System.Web.Security; | |
using DotNetOpenAuth.Messaging; | |
using DotNetOpenAuth.OpenId; | |
using DotNetOpenAuth.OpenId.Extensions.SimpleRegistration; | |
using DotNetOpenAuth.OpenId.RelyingParty; | |
namespace CRP.Authentication |
NewerOlder