public LoyaltyPointAccountIdentity(string msisdn, IRenderMethod <LoyaltyPointAccountIdentity> renderMethod)
 {
     this.msisdn       = CtorGuard.NotNull(msisdn, nameof(msisdn));
     this.renderMethod = CtorGuard.NotNull(renderMethod, nameof(renderMethod));
 }
 public LoyaltyPointAccountIdentityFactory(IRenderMethod <LoyaltyPointAccountIdentity> renderMethod)
 {
     this.renderMethod = CtorGuard.NotNull(renderMethod, nameof(renderMethod));
 }