generated from SwissLife-OSS/template
-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Is your feature request related to a problem? Please describe.
The Bewit builder pipeline could be more Fluent-ish.
Describe the solution you'd like
Instead of this:
public class BewitRegistrationBuilder
{
public Func<INonceRepository> GetRepository { get; set; }
}
}do this:
public class BewitRegistrationBuilder
{
internal Func<INonceRepository> GetRepository { get; private set; }
public BewitRegistrationBuilder SetRepository(Func<INonceRepository> create)
{
GetRepository = create;
return this;
}
}Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request