public Dictionary <DictionaryKey, List <BaseEntity> > SeedData()
        {
            var dictionary = new Dictionary <DictionaryKey, List <BaseEntity> >();

            var lstUserProfile = new List <BaseEntity>();
            var lstUserType    = new List <BaseEntity>();
            var lstCompany     = new List <BaseEntity>();

            lstCompany.Add(new Company()
            {
                Name = "Service Company SAC", CompanyId = 1
            });
            lstUserProfile.Add(new UserProfile()
            {
                Description = Complement.GetEnumDescription(UserProfiles.Administrador), UserProfileId = (int)UserProfiles.Administrador
            });
            lstUserProfile.Add(new UserProfile()
            {
                Description = Complement.GetEnumDescription(UserProfiles.Votante), UserProfileId = (int)UserProfiles.Votante
            });
            lstUserType.Add(new UserType()
            {
                Description = Complement.GetEnumDescription(UserTypes.Detractor), UserTypeId = (int)UserTypes.Detractor
            });
            lstUserType.Add(new UserType()
            {
                Description = Complement.GetEnumDescription(UserTypes.Neutro), UserTypeId = (int)UserTypes.Neutro
            });
            lstUserType.Add(new UserType()
            {
                Description = Complement.GetEnumDescription(UserTypes.Promotor), UserTypeId = (int)UserTypes.Promotor
            });

            dictionary.Add(DictionaryKey.Company, lstCompany);
            dictionary.Add(DictionaryKey.UserProfile, lstUserProfile);
            dictionary.Add(DictionaryKey.UserType, lstUserType);

            return(dictionary);
        }