Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/zinofi/Umbrella
Browse files Browse the repository at this point in the history
  • Loading branch information
richieedwards committed Oct 26, 2024
2 parents 999c1fc + cbc77eb commit f98f173
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public abstract class UmbrellaDataAccessApiController : UmbrellaApiController
/// <summary>
/// Gets the data access unit of work.
/// </summary>
protected IDataAccessUnitOfWork DataAccessUnitOfWork { get; }
protected IDataAccessUnitOfWork DataAccessUnitOfWork { get; } // TODO: Lazy

/// <summary>
/// Initializes a new instance of the <see cref="UmbrellaDataAccessApiController"/> class.
Expand All @@ -88,7 +88,7 @@ protected UmbrellaDataAccessApiController(
IUmbrellaMapper mapper,
IAuthorizationService authorizationService,
ISynchronizationManager synchronizationManager,
IDataAccessUnitOfWork dataAccessUnitOfWork)
IDataAccessUnitOfWork dataAccessUnitOfWork) // TODO: Lazy
: base(logger, hostingEnvironment)
{
Options = options;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ protected UmbrellaGenericRepositoryApiController(
Lazy<TRepository> repository,
IAuthorizationService authorizationService,
ISynchronizationManager synchronizationManager,
IDataAccessUnitOfWork dataAccessUnitOfWork)
IDataAccessUnitOfWork dataAccessUnitOfWork) // TODO: Lazy
: base(logger, hostingEnvironment, options, mapper, authorizationService, synchronizationManager, dataAccessUnitOfWork)
{
Repository = repository;
Expand Down

0 comments on commit f98f173

Please sign in to comment.