示例#1
0
 public HiLaarischSettings(
     string connectionString,
     string sendGridApiKey,
     string fromMailAddress,
     string testMailAddress,
     ApplicationPhase phase)
 {
     this.ConnectionString = connectionString;
     this.ApiKeys          = new ApiKey(sendGridApiKey);
     this.EmailAddresses   = new EmailAddress(fromMailAddress, testMailAddress);
     this.ApplicationPhase = phase;
 }
示例#2
0
 internal RuntimeExceptionInfo(ApplicationPhase phase, Exception exception)
 {
     Phase = phase;
     Exception = exception;
 }
示例#3
0
 public ApplicationDeployment(ApplicationPhase phase)
 {
     this.Phase = phase;
 }