/// <summary>
 /// Initializes a new instance of the <see cref="EfDataContext"/> class.
 /// </summary>
 /// <param name="context">Contexto de conexión a la base de dato susando EF Core.</param>
 public EfDataContext(EfDbContext context)
 {
     this._dbContext          = context;
     this._repositoryServices = new ServiceCollection();
     this.CreateRepositories();
 }