Added Creator informations in DataSeeder
This commit is contained in:
@@ -232,9 +232,9 @@ internal class TestDataSeeder(
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
private readonly static Creator ChloeCreator = new()
|
private readonly static Creator ChloeBeaugrandCreator = new()
|
||||||
{
|
{
|
||||||
Name = "chloe",
|
Name = "chloebeaugrand",
|
||||||
About = new()
|
About = new()
|
||||||
{
|
{
|
||||||
Title = "Page officielle",
|
Title = "Page officielle",
|
||||||
@@ -256,11 +256,95 @@ internal class TestDataSeeder(
|
|||||||
ProfilePictureUrl = "/images/usersmedia/chloebeaugrand/profilepictures/profileChloeBeaugrand01.png"
|
ProfilePictureUrl = "/images/usersmedia/chloebeaugrand/profilepictures/profileChloeBeaugrand01.png"
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
private readonly static Creator GuillaumeMCreator = new()
|
||||||
|
{
|
||||||
|
Name = "guillaumem",
|
||||||
|
About = new()
|
||||||
|
{
|
||||||
|
Title = "Page officielle",
|
||||||
|
Description = "Mettre en lumière le côté humain des entrepreneurs. Chaque service, chaque produit est porteur d’une histoire, d’une passion, d’une vision unique. Mon objectif est de faire rayonner cette unicité, de créer des connexions authentiques entre ces entrepreneurs et leurs clients potentiels. Parce que derrière chaque entreprise, il y a des personnes inspirantes qui méritent d’être entendues et comprises. Et toi, quel est ton objectif pour cette année?",
|
||||||
|
},
|
||||||
|
ProfileColors = new()
|
||||||
|
{
|
||||||
|
BannerTop = "#0BAAB2", BannerBottom = "#006D77", Accent = "#CC6F91", Menu = "#CC6F91",
|
||||||
|
},
|
||||||
|
SocialNetworks =
|
||||||
|
new()
|
||||||
|
{
|
||||||
|
FacebookUrl = "https://www.facebook.com/GuillaumeMousseau222",
|
||||||
|
InstagramUrl = "https://www.instagram.com/guillaumeaime/",
|
||||||
|
TikTokUrl = "https://www.tiktok.com/@guillaumeaime"
|
||||||
|
},
|
||||||
|
StoredDataUrls = new()
|
||||||
|
{
|
||||||
|
BannerPictureUrl = "/images/usersmedia/guillaumeMousseau/banners/bannerGuillaumeMousseau01.png",
|
||||||
|
ProfilePictureUrl = "/images/usersmedia/guillaumeMousseau/profilepictures/profileGuillaumeMousseau01.png"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
private readonly static Creator LeffetCreator = new()
|
||||||
|
{
|
||||||
|
Name = "leffet",
|
||||||
|
About = new()
|
||||||
|
{
|
||||||
|
Title = "Page officielle",
|
||||||
|
Description = "Mettre en lumière le côté humain des entrepreneurs. Chaque service, chaque produit est porteur d’une histoire, d’une passion, d’une vision unique. Mon objectif est de faire rayonner cette unicité, de créer des connexions authentiques entre ces entrepreneurs et leurs clients potentiels. Parce que derrière chaque entreprise, il y a des personnes inspirantes qui méritent d’être entendues et comprises. Et toi, quel est ton objectif pour cette année?",
|
||||||
|
},
|
||||||
|
ProfileColors = new()
|
||||||
|
{
|
||||||
|
BannerTop = "#CC6F91", BannerBottom = "#FBC702", Accent = "#FBC702", Menu = "#FBC702",
|
||||||
|
},
|
||||||
|
SocialNetworks =
|
||||||
|
new()
|
||||||
|
{
|
||||||
|
FacebookUrl = "https://www.facebook.com/Hutopy",
|
||||||
|
InstagramUrl = "https://www.instagram.com/guillaumeaime/",
|
||||||
|
WebsiteUrl = "https://fondationleffet.ca/"
|
||||||
|
},
|
||||||
|
StoredDataUrls = new()
|
||||||
|
{
|
||||||
|
BannerPictureUrl = "/images/usersmedia/leffet/banners/banner02.png",
|
||||||
|
ProfilePictureUrl = "/images/usersmedia/leffet/profilepictures/leffetProfile01.png"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
private readonly static Creator MathieuCaron = new()
|
||||||
|
{
|
||||||
|
Name = "mathieucaron",
|
||||||
|
About = new()
|
||||||
|
{
|
||||||
|
Title = "Page officielle",
|
||||||
|
Description = "Mettre en lumière le côté humain des entrepreneurs. Chaque service, chaque produit est porteur d’une histoire, d’une passion, d’une vision unique. Mon objectif est de faire rayonner cette unicité, de créer des connexions authentiques entre ces entrepreneurs et leurs clients potentiels. Parce que derrière chaque entreprise, il y a des personnes inspirantes qui méritent d’être entendues et comprises. Et toi, quel est ton objectif pour cette année?",
|
||||||
|
},
|
||||||
|
ProfileColors = new()
|
||||||
|
{
|
||||||
|
BannerTop = "#101B49", BannerBottom = "#698FE7", Accent = "#1D1D1B", Menu = "#1D1D1B",
|
||||||
|
},
|
||||||
|
SocialNetworks =
|
||||||
|
new()
|
||||||
|
{
|
||||||
|
FacebookUrl = "https://www.facebook.com/MathieuCaronPro/",
|
||||||
|
YoutubeUrl = "https://www.youtube.com/@lesinterviewsatypiquesdema4692",
|
||||||
|
|
||||||
|
},
|
||||||
|
StoredDataUrls = new()
|
||||||
|
{
|
||||||
|
BannerPictureUrl = "/images/usersmedia/mathieuCaron/banners/bannerMathieuCaron01.png",
|
||||||
|
ProfilePictureUrl = "/images/usersmedia/mathieuCaron/profilepictures/profileMathieuCaron01.png"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
private readonly Creator[] _creators =
|
private readonly Creator[] _creators =
|
||||||
[
|
[
|
||||||
HutopyCreator,
|
HutopyCreator,
|
||||||
ArpsCreator,
|
ArpsCreator,
|
||||||
ChloeCreator
|
ChloeBeaugrandCreator,
|
||||||
|
GuillaumeMCreator,
|
||||||
|
LeffetCreator,
|
||||||
|
MathieuCaron
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user