AC
- When I add the Clockify Service to a DI container, I can optionally provide a default Workspace ID for all requests.
- If I do not add a default Workspace ID, then I am only presented with an exception at request execution when I've not provided a Workspace ID.
Example:
builder.Services.AddClockifyClient(options =>
{
options.WorkspaceId = builder.Configuration["Clockify:WorkspaceId"]
});
AC
Example: