refactor(IFactory): add Repository getter method

This commit is contained in:
tekh 2025-10-01 15:14:01 +02:00
parent 8708f54996
commit a6048238d4

View File

@ -14,6 +14,10 @@ namespace DigitalData.Core.Abstraction.Application
public interface IFactory : IServiceCollection, IServiceProvider public interface IFactory : IServiceCollection, IServiceProvider
{ {
#if NET
public
#endif
IRepository Repository { get; }
} }
public class Factory : ServiceCollection, IFactory, IServiceCollection, IServiceProvider public class Factory : ServiceCollection, IFactory, IServiceCollection, IServiceProvider