Example #1
0
 public void SignedUp(SignUpId id, UserId ownerId, Email ownerEmail, TenantName tenantName, HomePage homePage, CountryId countryId, Country country, DateTime signedUp)
 {
     Apply(new TenantSignedUp(id, ownerId, ownerEmail, tenantName, homePage, countryId, country, signedUp));
     // studio Apply(new TenantCreated(id, ownerId, ownerEmail, tenantId, tenantName, homePage, countryId, country, signedUp));
 }
Example #2
0
 public void AskedToJoin(SignUpId id, UserId userId, Email tenantOwnerEmail, DateTime askedToJoin)
 {
     // TODO: rename from AskedToJoinTenant to askToJoinTentant
     Apply(new AskedToJoinTenant(id, userId, tenantOwnerEmail, askedToJoin));
 }