I hereby claim:
- I am boggin on github.
- I am boggin (https://keybase.io/boggin) on keybase.
- I have a public key whose fingerprint is 4548 9E13 27AA 9DAC C2F2 0527 96AC C195 ACFB 5646
To claim this, I am signing this object:
| namespace Website | |
| { | |
| using System.IO; | |
| using System.Web; | |
| using System.Web.Mvc; | |
| using System.Web.Routing; | |
| public class WebFormMvcUtil | |
| { | |
| private static HtmlHelper html; |
| namespace Demo.Ldap.Configuration | |
| { | |
| public LdapConfig(bool enabled, string user, string password, string domain) | |
| { | |
| this.Enabled = enabled; | |
| this.User = user; | |
| this.Password = password; | |
| this.Domain = domain; | |
| } |
| namespace Demo.Notification | |
| { | |
| using System.Net.Mail; | |
| public class EmailService : IEmailService | |
| { | |
| public void Notify(NotificationDto notification) | |
| { | |
| var msg = new MailMessage | |
| { |
| namespace Demo.Repository.Models | |
| { | |
| public class Country : Lookup | |
| { | |
| /// <summary> | |
| /// Gets or sets the issues that link to this. | |
| /// </summary> | |
| /// <remarks>This may be referenced by many issues.</remarks> | |
| public ICollection<Issue> Issues { get; set; } | |
| } |
| namespace Demo.Repository.Infrastructure | |
| { | |
| public class ApplicationContext : DbContext | |
| { | |
| public readonly FrameLogModule<ChangeSet, Person> Logger; | |
| public ApplicationContext() : base("name=Demo") | |
| { | |
| Configuration.ProxyCreationEnabled = false; | |
| Database.Initialize(true); |
| namespace Demo.Repository.Specifications | |
| { | |
| public class IssueByNameSpecification : Specification<Issue> | |
| { | |
| private readonly string key; | |
| public IssueByNameSpecification(string key) | |
| { | |
| this.key = key; | |
| } |
I hereby claim:
To claim this, I am signing this object:
| .level-meter__content { | |
| background: #fff; | |
| } | |
| .level-meter__box { | |
| fill: none; | |
| stroke: #7d7d7d; | |
| } | |
| .level-meter__bar-empty { | |
| fill: #7d7d7d; | |
| stroke: #7d7d7d; |
| namespace WebRole.Controllers | |
| { | |
| public class MyController : ApiController | |
| { | |
| private readonly ICache cache; | |
| private readonly IMyRequestQueue myRequestQueue; | |
| public MyController( | |
| ICache cache, |