public IActionResult Get()
        {
            var list = new List <Dictionary <string, string> >();
            var dic  = new Dictionary <string, string>();

            dic.Add($"controller dep: {nameof(singletonService)}", singletonService.Referencia);
            dic.Add($"controller dep: {nameof(scopedService)}", scopedService.Referencia);
            dic.Add($"controller dep: {nameof(transientService)}", transientService.Referencia);

            dic.Add($"controller dep: {nameof(singletonService2)}", singletonService2.Referencia);
            dic.Add($"controller dep: {nameof(scopedService2)}", scopedService2.Referencia);
            dic.Add($"controller dep: {nameof(transientService2)}", transientService2.Referencia);

            list.Add(dic);
            list.Add(anotherDependency.GetReferencias());

            return(Ok(list));
        }