Skip to content

Instantly share code, notes, and snippets.

View mthomas's full-sized avatar

Michael Thomas mthomas

View GitHub Profile
public abstract class DemoTool{
// references to domain services and use
public Guid CreateConsumer(string email, string password){
return _userService.CreateConsumer(new ConsumerCreateRequest{
Email = email,
Password = password,
ConfirmPassword = password,
/*other property assignment*/}
).Id;