pkuderov

Developers

Dec 9th, 2015
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.82 KB | None | 0 0
  1. public static Query DevelopersHeadHunter
  2. {
  3.     get
  4.     {
  5.         return new Query("Разработчики")
  6.         {
  7.             TargetSiteSources = new[] { SiteSource.HeadHunter },
  8.             Areas = new[] { City.Moscow },
  9.             ProfessionAreas = new[]
  10.             {
  11.                 ProfessionArea.ItAndTelecomForSoftwareDevelopment,
  12.                 ProfessionArea.ItAndTelecomForDatabaseAdministrator,
  13.                 ProfessionArea.ItAndTelecomForCtoAndCioAndItDirector,
  14.                 ProfessionArea.ItAndTelecomForDataCommunicationAndInternetAccess,
  15.                 ProfessionArea.ItAndTelecomForWebEngineer,
  16.                 ProfessionArea.ItAndTelecomForTesting,
  17.                 ProfessionArea.ItAndTelecomForItSecurity,
  18.                 ProfessionArea.ItAndTelecomForErp,
  19.                 ProfessionArea.ItAndTelecomForGamedev,
  20.                 ProfessionArea.ItAndTelecomForStartups,
  21.                 ProfessionArea.ItAndTelecomForInternet,
  22.                 ProfessionArea.ItAndTelecomForTelecommunications,
  23.                 ProfessionArea.ItAndTelecomForECommerce,
  24.                 ProfessionArea.ItAndTelecomForMultimedia,
  25.                 ProfessionArea.ItAndTelecomForComputerAidedDesignSystems,
  26.                 ProfessionArea.ItAndTelecomForMobileAndWirelessTechnology,
  27.                 ProfessionArea.ItAndTelecomForEngineer,
  28.                 ProfessionArea.ItAndTelecomForNetworks,
  29.                 ProfessionArea.ItAndTelecomForSystemIntegration,
  30.                 ProfessionArea.ItAndTelecomForCrm,
  31.                 ProfessionArea.ItAndTelecomForBankingSoftware,
  32.                 ProfessionArea.ItAndTelecomForAnalyst
  33.             },
  34.             UglyTitleKeywords = new[]
  35.             {
  36.                 @"not дизайнер not .net not c# not администратор not php not java not менеджер not мастер not поддержки not копирайтер not ассистент not редактор not конструктор not ""сервисный инженер"" not call not телемаркетинг not монтажник not маркетолог not начальник not пресейл not пре-сейл not pre-sale not presale not продав* not помощн* not заместитель not ""технический специалист"" not продаж* not инженер-проектировщик not редактор not seo not smm not электрик not художник not хозяйственного not математик not сертификац* not оператор not стажер* not техник*"
  37.             },
  38.             AdditionalRequirements = new[] { AdditionalRequirement.NotFromAgency },
  39.         };
  40.     }
  41. }
  42.  
  43. public static Query DevelopersSuperJob
  44. {
  45.     get
  46.     {
  47.         return new Query("Разработчики")
  48.         {
  49.             TargetSiteSources = new[] { SiteSource.SuperJob },
  50.             Areas = new[] { City.Moscow, City.MoscowRegion },
  51.             ProfessionAreas = new[] { ProfessionArea.ItAndTelecom },
  52.             UglyTitleKeywords = new[] { @"программист" },
  53.             AdditionalRequirements = new[] { AdditionalRequirement.NotFromAgency },
  54.             Salary = new MaybeRange<int>(70000.ToMaybe(), Maybe<int>.Nothing),
  55.             WorkType = WorkType.FullTime.ToMaybe(),
  56.         };
  57.     }
  58. }
Advertisement
Add Comment
Please, Sign In to add comment