public async Task HandleContestantJoin()
        {
            IsContestantJoining = true;
            var contestant = new Contestant()
            {
                UserId        = UserId,
                FirstName     = FirstName,
                LastName      = LastName,
                Username      = Username,
                CompetitionId = Competition.CompetitionId
            };

            contestant = await ContestantsService.PostContestant(contestant);

            Competition = await CompetitionsService.GetCompetition(CompetitionId);

            IsContestantJoining = false;
        }
Пример #2
0
        #pragma warning disable 1998
        public async override global::System.Threading.Tasks.Task ExecuteAsync()
        {
            BeginContext(7, 2, true);
            WriteLiteral("\r\n");
            EndContext();
            BeginContext(44, 2, true);
            WriteLiteral("\r\n");
            EndContext();
            BeginContext(133, 2, true);
            WriteLiteral("\r\n");
            EndContext();
#line 8 "C:\Users\iNexus\Documents\source\repos\HireMe\HireMe\Areas\Identity\Pages\Account\Manage\ContestantPosts.cshtml"

            ViewData["Title"] = "My Posts";
            Layout            = "/Areas/Identity/Pages/_Layout.cshtml";

            var index = 1;

#line default
#line hidden
            BeginContext(255, 29, true);
            WriteLiteral("\r\n<div class=\"wrapper\">\r\n    ");
            EndContext();
            BeginContext(284, 33, false);
            __tagHelperExecutionContext = __tagHelperScopeManager.Begin("partial", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "54f43c5e774094e4119f963a8817d88389686e0c8267", async() => {
            }
                                                                        );
            __Microsoft_AspNetCore_Mvc_TagHelpers_PartialTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.TagHelpers.PartialTagHelper>();
            __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_PartialTagHelper);
            __Microsoft_AspNetCore_Mvc_TagHelpers_PartialTagHelper.Name = (string)__tagHelperAttribute_0.Value;
            __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
            await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);

            if (!__tagHelperExecutionContext.Output.IsContentModified)
            {
                await __tagHelperExecutionContext.SetOutputContentAsync();
            }
            Write(__tagHelperExecutionContext.Output);
            __tagHelperExecutionContext = __tagHelperScopeManager.End();
            EndContext();
            BeginContext(317, 42, true);
            WriteLiteral("\r\n\r\n    <div class=\"main-panel\">\r\n        ");
            EndContext();
            BeginContext(359, 30, false);
            __tagHelperExecutionContext = __tagHelperScopeManager.Begin("partial", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "54f43c5e774094e4119f963a8817d88389686e0c9568", async() => {
            }
                                                                        );
            __Microsoft_AspNetCore_Mvc_TagHelpers_PartialTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.TagHelpers.PartialTagHelper>();
            __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_PartialTagHelper);
            __Microsoft_AspNetCore_Mvc_TagHelpers_PartialTagHelper.Name = (string)__tagHelperAttribute_1.Value;
            __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
            await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);

            if (!__tagHelperExecutionContext.Output.IsContentModified)
            {
                await __tagHelperExecutionContext.SetOutputContentAsync();
            }
            Write(__tagHelperExecutionContext.Output);
            __tagHelperExecutionContext = __tagHelperScopeManager.End();
            EndContext();
            BeginContext(389, 135, true);
            WriteLiteral("\r\n        <div class=\"content\">\r\n\r\n            <div class=\"container-fluid\">\r\n\r\n                <div class=\"row\">\r\n                    ");
            EndContext();
            BeginContext(524, 148, false);
            __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "54f43c5e774094e4119f963a8817d88389686e0c10974", async() => {
                BeginContext(609, 59, true);
                WriteLiteral("\r\n                        Create Post\r\n                    ");
                EndContext();
            }
                                                                        );
            __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
            __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
            __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_2);
            __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_3.Value;
            __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_3);
            __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_4.Value;
            __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_4);
            await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);

            if (!__tagHelperExecutionContext.Output.IsContentModified)
            {
                await __tagHelperExecutionContext.SetOutputContentAsync();
            }
            Write(__tagHelperExecutionContext.Output);
            __tagHelperExecutionContext = __tagHelperScopeManager.End();
            EndContext();
            BeginContext(672, 459, true);
            WriteLiteral(@"
                    <table class=""table w-75 mx-auto table-hover"">
                        <thead>
                            <tr class=""row"">
                                <th class=""col-md-1"">#</th>
                                <th class=""col-md-5"">Name</th>
                                <th class=""col-md-6 text-center"">Actions</th>
                            </tr>
                        </thead>
                        <tbody>


");
            EndContext();
#line 39 "C:\Users\iNexus\Documents\source\repos\HireMe\HireMe\Areas\Identity\Pages\Account\Manage\ContestantPosts.cshtml"

            var posterId = UserManager.GetUserId(User);
            foreach (var item in ContestantsService.GetAllContestants(posterId))
            {
#line default
#line hidden
                BeginContext(1377, 115, true);
                WriteLiteral("                                    <tr class=\"row\">\r\n                                        <th class=\"col-md-1\">");
                EndContext();
                BeginContext(1493, 5, false);
#line 44 "C:\Users\iNexus\Documents\source\repos\HireMe\HireMe\Areas\Identity\Pages\Account\Manage\ContestantPosts.cshtml"
                Write(index);

#line default
#line hidden
                EndContext();
                BeginContext(1498, 68, true);
                WriteLiteral("</th>\r\n                                        <td class=\"col-md-5\">");
                EndContext();
                BeginContext(1567, 9, false);
#line 45 "C:\Users\iNexus\Documents\source\repos\HireMe\HireMe\Areas\Identity\Pages\Account\Manage\ContestantPosts.cshtml"
                Write(item.Name);

#line default
#line hidden
                EndContext();
                BeginContext(1576, 228, true);
                WriteLiteral("</td>\r\n\r\n                                        <td class=\"col-md-6\">\r\n                                            <div class=\"form-inline text-center justify-content-around\">\r\n                                                <a");
                EndContext();
                BeginWriteAttribute("href", " href=\"", 1804, "\"", 1870, 1);
#line 49 "C:\Users\iNexus\Documents\source\repos\HireMe\HireMe\Areas\Identity\Pages\Account\Manage\ContestantPosts.cshtml"
                WriteAttributeValue("", 1811, Url.Action("Details", "Contestants", new { id = item.Id }), 1811, 59, false);

#line default
#line hidden
                EndWriteAttribute();
                BeginContext(1871, 215, true);
                WriteLiteral(">\r\n                                                    <button type=\"submit\" class=\"btn btn-info\">View</button>\r\n                                                </a>\r\n                                                ");
                EndContext();
                BeginContext(2086, 215, false);
                __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "54f43c5e774094e4119f963a8817d88389686e0c15596", async() => {
                    BeginContext(2148, 149, true);
                    WriteLiteral("\r\n                                                    <button class=\"btn btn-warning\">Edit</button>\r\n                                                ");
                    EndContext();
                }
                                                                            );
                __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
                __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
                __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Page = (string)__tagHelperAttribute_5.Value;
                __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_5);
                if (__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues == null)
                {
                    throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
                }
                BeginWriteTagHelperAttribute();
#line 52 "C:\Users\iNexus\Documents\source\repos\HireMe\HireMe\Areas\Identity\Pages\Account\Manage\ContestantPosts.cshtml"
                WriteLiteral(item.Id);

#line default
#line hidden
                __tagHelperStringValueBuffer = EndWriteTagHelperAttribute();
                __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"] = __tagHelperStringValueBuffer;
                __tagHelperExecutionContext.AddTagHelperAttribute("asp-route-id", __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"], global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
                await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);

                if (!__tagHelperExecutionContext.Output.IsContentModified)
                {
                    await __tagHelperExecutionContext.SetOutputContentAsync();
                }
                Write(__tagHelperExecutionContext.Output);
                __tagHelperExecutionContext = __tagHelperScopeManager.End();
                EndContext();
                BeginContext(2301, 50, true);
                WriteLiteral("\r\n                                                ");
                EndContext();
                BeginContext(2351, 211, false);
                __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "54f43c5e774094e4119f963a8817d88389686e0c18205", async() => {
                    BeginContext(2408, 150, true);
                    WriteLiteral("\r\n                                                    <button class=\"btn btn-danger\">Delete</button>\r\n                                                ");
                    EndContext();
                }
                                                                            );
                __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
                __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
                __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Page = (string)__tagHelperAttribute_6.Value;
                __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_6);
                if (__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues == null)
                {
                    throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
                }
                BeginWriteTagHelperAttribute();
#line 55 "C:\Users\iNexus\Documents\source\repos\HireMe\HireMe\Areas\Identity\Pages\Account\Manage\ContestantPosts.cshtml"
                WriteLiteral(item.Id);

#line default
#line hidden
                __tagHelperStringValueBuffer = EndWriteTagHelperAttribute();
                __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"] = __tagHelperStringValueBuffer;
                __tagHelperExecutionContext.AddTagHelperAttribute("asp-route-id", __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"], global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
                await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);

                if (!__tagHelperExecutionContext.Output.IsContentModified)
                {
                    await __tagHelperExecutionContext.SetOutputContentAsync();
                }
                Write(__tagHelperExecutionContext.Output);
                __tagHelperExecutionContext = __tagHelperScopeManager.End();
                EndContext();
                BeginContext(2562, 148, true);
                WriteLiteral("\r\n\r\n                                            </div>\r\n                                        </td>\r\n\r\n                                    </tr>\r\n");
                EndContext();
#line 63 "C:\Users\iNexus\Documents\source\repos\HireMe\HireMe\Areas\Identity\Pages\Account\Manage\ContestantPosts.cshtml"

                index++;
            }


#line default
#line hidden
            BeginContext(2824, 140, true);
            WriteLiteral("                        </tbody>\r\n                    </table>\r\n                </div>\r\n\r\n            </div>\r\n        </div>\r\n\r\n\r\n\r\n        ");
            EndContext();
            BeginContext(2964, 32, false);
            __tagHelperExecutionContext = __tagHelperScopeManager.Begin("partial", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "54f43c5e774094e4119f963a8817d88389686e0c21446", async() => {
            }
                                                                        );
            __Microsoft_AspNetCore_Mvc_TagHelpers_PartialTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.TagHelpers.PartialTagHelper>();
            __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_PartialTagHelper);
            __Microsoft_AspNetCore_Mvc_TagHelpers_PartialTagHelper.Name = (string)__tagHelperAttribute_7.Value;
            __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_7);
            await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);

            if (!__tagHelperExecutionContext.Output.IsContentModified)
            {
                await __tagHelperExecutionContext.SetOutputContentAsync();
            }
            Write(__tagHelperExecutionContext.Output);
            __tagHelperExecutionContext = __tagHelperScopeManager.End();
            EndContext();
            BeginContext(2996, 26, true);
            WriteLiteral("\r\n\r\n    </div>\r\n</div>\r\n\r\n");
            EndContext();
            DefineSection("Scripts", async() => {
                BeginContext(3040, 6, true);
                WriteLiteral("\r\n    ");
                EndContext();
                BeginContext(3046, 44, false);
                __tagHelperExecutionContext = __tagHelperScopeManager.Begin("partial", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "54f43c5e774094e4119f963a8817d88389686e0c22915", async() => {
                }
                                                                            );
                __Microsoft_AspNetCore_Mvc_TagHelpers_PartialTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.TagHelpers.PartialTagHelper>();
                __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_PartialTagHelper);
                __Microsoft_AspNetCore_Mvc_TagHelpers_PartialTagHelper.Name = (string)__tagHelperAttribute_8.Value;
                __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_8);
                await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
                if (!__tagHelperExecutionContext.Output.IsContentModified)
                {
                    await __tagHelperExecutionContext.SetOutputContentAsync();
                }
                Write(__tagHelperExecutionContext.Output);
                __tagHelperExecutionContext = __tagHelperScopeManager.End();
                EndContext();
                BeginContext(3090, 2, true);
                WriteLiteral("\r\n");
                EndContext();
            }
                          );
        }
Пример #3
0
        #pragma warning disable 1998
        public async override global::System.Threading.Tasks.Task ExecuteAsync()
        {
            BeginContext(59, 2, true);
            WriteLiteral("\r\n");
            EndContext();
            BeginContext(134, 2, true);
            WriteLiteral("\r\n");
            EndContext();
            BeginContext(274, 2, true);
            WriteLiteral("\r\n");
            EndContext();
            BeginContext(315, 2, true);
            WriteLiteral("\r\n");
            EndContext();
#line 12 "C:\Users\iNexus\Documents\source\repos\HireMe\HireMe\Views\Contestants\Index.cshtml"

            ViewBag.Title = "Workers";
            Layout        = "../Home/_Layout.cshtml";

            int PostsToShow = 20;

            var posterId = UserManager.GetUserId(User);


#line default
#line hidden
            BeginContext(478, 22, true);
            WriteLiteral("\r\n<!-- menu Area -->\r\n");
            EndContext();
            BeginContext(500, 51, false);
            __tagHelperExecutionContext = __tagHelperScopeManager.Begin("partial", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "bce7c86d9be6ea5bbb41fc55919d1dc1d63e2f978256", async() => {
            }
                                                                        );
            __Microsoft_AspNetCore_Mvc_TagHelpers_PartialTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.TagHelpers.PartialTagHelper>();
            __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_PartialTagHelper);
            __Microsoft_AspNetCore_Mvc_TagHelpers_PartialTagHelper.Name = (string)__tagHelperAttribute_0.Value;
            __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
            await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);

            if (!__tagHelperExecutionContext.Output.IsContentModified)
            {
                await __tagHelperExecutionContext.SetOutputContentAsync();
            }
            Write(__tagHelperExecutionContext.Output);
            __tagHelperExecutionContext = __tagHelperScopeManager.End();
            EndContext();
            BeginContext(551, 28, true);
            WriteLiteral("\r\n\r\n\r\n<!-- banner Area -->\r\n");
            EndContext();
            BeginContext(579, 50, false);
            __tagHelperExecutionContext = __tagHelperScopeManager.Begin("partial", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "bce7c86d9be6ea5bbb41fc55919d1dc1d63e2f979543", async() => {
            }
                                                                        );
            __Microsoft_AspNetCore_Mvc_TagHelpers_PartialTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.TagHelpers.PartialTagHelper>();
            __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_PartialTagHelper);
            __Microsoft_AspNetCore_Mvc_TagHelpers_PartialTagHelper.Name = (string)__tagHelperAttribute_1.Value;
            __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
            await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);

            if (!__tagHelperExecutionContext.Output.IsContentModified)
            {
                await __tagHelperExecutionContext.SetOutputContentAsync();
            }
            Write(__tagHelperExecutionContext.Output);
            __tagHelperExecutionContext = __tagHelperScopeManager.End();
            EndContext();
            BeginContext(629, 353, true);
            WriteLiteral(@"

<section class=""ftco-section bg-light"">
    <div class=""container"">
        <div class=""row"">
            <div class=""col-lg-9 pr-lg-4"">

                <div class=""row justify-content-center pb-3"">
                    <div class=""col-md-12 heading-section ftco-animate"">
                        <h2 class=""mb-4 text-center"">Workers Listed: ");
            EndContext();
            BeginContext(983, 40, false);
#line 36 "C:\Users\iNexus\Documents\source\repos\HireMe\HireMe\Views\Contestants\Index.cshtml"
            Write(ContestantsService.GetContestantsCount());

#line default
#line hidden
            EndContext();
            BeginContext(1023, 98, true);
            WriteLiteral("</h2>\r\n                    </div>\r\n                </div>\r\n                <div class=\"row\">\r\n\r\n\r\n");
            EndContext();
#line 42 "C:\Users\iNexus\Documents\source\repos\HireMe\HireMe\Views\Contestants\Index.cshtml"


            foreach (var item in ContestantsService.GetLastContestants(PostsToShow))
            {
#line default
#line hidden
                BeginContext(1272, 496, true);
                WriteLiteral(@"                                        <div class=""col-md-12 ftco-animate"">
                                                                
                                                                    <div class=""job-post-item p-4 d-block d-lg-flex align-items-center"">
                                                                                            <div class=""col-md-2"">
                                                                                                <a");
                EndContext();
                BeginWriteAttribute("href", " href=\"", 1768, "\"", 1806, 2);
                WriteAttributeValue("", 1775, "../Contestants/Details/", 1775, 23, true);
#line 50 "C:\Users\iNexus\Documents\source\repos\HireMe\HireMe\Views\Contestants\Index.cshtml"
                WriteAttributeValue("", 1798, item.Id, 1798, 8, false);

#line default
#line hidden
                EndWriteAttribute();
                BeginContext(1807, 103, true);
                WriteLiteral(">\r\n                                                                                                    ");
                EndContext();
                BeginContext(1910, 104, false);
                __tagHelperExecutionContext = __tagHelperScopeManager.Begin("img", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "bce7c86d9be6ea5bbb41fc55919d1dc1d63e2f9713159", async() => {
                }
                                                                            );
                __Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper>();
                __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper);
                BeginAddHtmlAttributeValues(__tagHelperExecutionContext, "src", 2, global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
                AddHtmlAttributeValue("", 1920, "~/", 1920, 2, true);
#line 51 "C:\Users\iNexus\Documents\source\repos\HireMe\HireMe\Views\Contestants\Index.cshtml"
                AddHtmlAttributeValue("", 1922, item.ProfilePic, 1922, 16, false);

#line default
#line hidden
                EndAddHtmlAttributeValues(__tagHelperExecutionContext);
                __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_2);
                __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_3);
                __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_4);
                __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_5);
                await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);

                if (!__tagHelperExecutionContext.Output.IsContentModified)
                {
                    await __tagHelperExecutionContext.SetOutputContentAsync();
                }
                Write(__tagHelperExecutionContext.Output);
                __tagHelperExecutionContext = __tagHelperScopeManager.End();
                EndContext();
                BeginContext(2014, 645, true);
                WriteLiteral(@"
                                                                                                </a>
                                                                                            </div>
                                                                        <div class=""one-third mb-4 mb-md-0"">

                                                                            <div class=""job-post-item-header align-items-center"">

                                                                                <h2 class=""mr-3 text-black"">
                                                                                    <a");
                EndContext();
                BeginWriteAttribute("href", " href=\"", 2659, "\"", 2697, 2);
                WriteAttributeValue("", 2666, "../Contestants/Details/", 2666, 23, true);
#line 59 "C:\Users\iNexus\Documents\source\repos\HireMe\HireMe\Views\Contestants\Index.cshtml"
                WriteAttributeValue("", 2689, item.Id, 2689, 8, false);

#line default
#line hidden
                EndWriteAttribute();
                BeginContext(2698, 1, true);
                WriteLiteral(">");
                EndContext();
                BeginContext(2700, 9, false);
#line 59 "C:\Users\iNexus\Documents\source\repos\HireMe\HireMe\Views\Contestants\Index.cshtml"
                Write(item.Name);

#line default
#line hidden
                EndContext();
                BeginContext(2709, 145, true);
                WriteLiteral("</a>  \r\n                                                                                    <button class=\"btn btn-sm btn-primary\" type=\"button\">");
                EndContext();
                BeginContext(2855, 13, false);
#line 60 "C:\Users\iNexus\Documents\source\repos\HireMe\HireMe\Views\Contestants\Index.cshtml"
                Write(item.WorkType);

#line default
#line hidden
                EndContext();
                BeginContext(2868, 206, true);
                WriteLiteral("</button>\r\n                                                                                </h2>\r\n                                                                                <h4 class=\"mr-3 text-black\">");
                EndContext();
                BeginContext(3075, 12, false);
#line 62 "C:\Users\iNexus\Documents\source\repos\HireMe\HireMe\Views\Contestants\Index.cshtml"
                Write(item.Genders);

#line default
#line hidden
                EndContext();
                BeginContext(3087, 750, true);
                WriteLiteral(@"</h4>
                                                                            </div>
                                                                            <div class=""job-post-item-body d-block d-md-flex"">
                                                                                <div class=""mr-3"">
                                                                                    <div>
                                                                                        <p class=""text-success"">
                                                                                            <span class=""icon-location_city""></span>
                                                                                            ");
                EndContext();
                BeginContext(3838, 13, false);
#line 69 "C:\Users\iNexus\Documents\source\repos\HireMe\HireMe\Views\Contestants\Index.cshtml"
                Write(item.Location);

#line default
#line hidden
                EndContext();
                BeginContext(3851, 634, true);
                WriteLiteral(@"
                                                                                            </p>
                                                                                    </div>
                                                                                </div>

                                                                            </div>
                                                                        </div>





                                                                    </div>
                                                                
                            </div>
");
                EndContext();
#line 84 "C:\Users\iNexus\Documents\source\repos\HireMe\HireMe\Views\Contestants\Index.cshtml"
            }


#line default
#line hidden
            BeginContext(4533, 1497, true);
            WriteLiteral(@"<!-- end -->

                </div>
                <div class=""row mt-5"">
                    <div class=""col text-center"">
                        <div class=""block-27"">
                            <ul>
                                <li>
                                    <a href=""#"">&lt;</a>
                                </li>
                                <li class=""active"">
                                    <span>1</span>
                                </li>
                                <li>
                                    <a href=""#"">2</a>
                                </li>
                                <li>
                                    <a href=""#"">3</a>
                                </li>
                                <li>
                                    <a href=""#"">4</a>
                                </li>
                                <li>
                                    <a href=""#"">5</a>
                                </li>
    ");
            WriteLiteral(@"                            <li>
                                    <a href=""#"">&gt;</a>
                                </li>
                            </ul>
                        </div>
                    </div>
                </div>
            </div>
            <div class=""col-lg-3 sidebar"">
                <div class=""sidebar-box bg-white p-4 ftco-animate"">
                    <h3 class=""heading-sidebar"">Browse Category</h3>
                    ");
            EndContext();
            BeginContext(6030, 315, false);
            __tagHelperExecutionContext = __tagHelperScopeManager.Begin("form", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "bce7c86d9be6ea5bbb41fc55919d1dc1d63e2f9721529", async() => {
                BeginContext(6072, 266, true);
                WriteLiteral(@"
                        <div class=""form-group"">
                            <span class=""icon icon-search""></span>
                            <input type=""text"" class=""form-control"" placeholder=""Search..."">
                        </div>
                    ");
                EndContext();
            }
                                                                        );
            __Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper>();
            __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper);
            __Microsoft_AspNetCore_Mvc_TagHelpers_RenderAtEndOfFormTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper>();
            __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_RenderAtEndOfFormTagHelper);
            __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_6);
            __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_7);
            await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);

            if (!__tagHelperExecutionContext.Output.IsContentModified)
            {
                await __tagHelperExecutionContext.SetOutputContentAsync();
            }
            Write(__tagHelperExecutionContext.Output);
            __tagHelperExecutionContext = __tagHelperScopeManager.End();
            EndContext();
            BeginContext(6345, 22, true);
            WriteLiteral("\r\n                    ");
            EndContext();
            BeginContext(6367, 981, false);
            __tagHelperExecutionContext = __tagHelperScopeManager.Begin("form", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "bce7c86d9be6ea5bbb41fc55919d1dc1d63e2f9723441", async() => {
                BeginContext(6404, 937, true);
                WriteLiteral(@"
                        <label for=""option-job-1""><input type=""checkbox"" id=""option-job-1"" name=""vehicle"" value="""" checked> Website &amp; Software</label><br>
                        <label for=""option-job-2""><input type=""checkbox"" id=""option-job-2"" name=""vehicle"" value=""""> Education &amp; Training</label><br>
                        <label for=""option-job-3""><input type=""checkbox"" id=""option-job-3"" name=""vehicle"" value=""""> Graphics Design</label><br>
                        <label for=""option-job-4""><input type=""checkbox"" id=""option-job-4"" name=""vehicle"" value=""""> Accounting &amp; Finance</label><br>
                        <label for=""option-job-5""><input type=""checkbox"" id=""option-job-5"" name=""vehicle"" value=""""> Restaurant &amp; Food</label><br>
                        <label for=""option-job-6""><input type=""checkbox"" id=""option-job-6"" name=""vehicle"" value=""""> Health &amp; Hospital</label><br>
                    ");
                EndContext();
            }
                                                                        );
            __Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper>();
            __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper);
            __Microsoft_AspNetCore_Mvc_TagHelpers_RenderAtEndOfFormTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper>();
            __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_RenderAtEndOfFormTagHelper);
            __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_6);
            __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_8);
            await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);

            if (!__tagHelperExecutionContext.Output.IsContentModified)
            {
                await __tagHelperExecutionContext.SetOutputContentAsync();
            }
            Write(__tagHelperExecutionContext.Output);
            __tagHelperExecutionContext = __tagHelperScopeManager.End();
            EndContext();
            BeginContext(7348, 187, true);
            WriteLiteral("\r\n                </div>\r\n\r\n                <div class=\"sidebar-box bg-white p-4 ftco-animate\">\r\n                    <h3 class=\"heading-sidebar\">Select Location</h3>\r\n                    ");
            EndContext();
            BeginContext(7535, 315, false);
            __tagHelperExecutionContext = __tagHelperScopeManager.Begin("form", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "bce7c86d9be6ea5bbb41fc55919d1dc1d63e2f9726252", async() => {
                BeginContext(7577, 266, true);
                WriteLiteral(@"
                        <div class=""form-group"">
                            <span class=""icon icon-search""></span>
                            <input type=""text"" class=""form-control"" placeholder=""Search..."">
                        </div>
                    ");
                EndContext();
            }
                                                                        );
            __Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper>();
            __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper);
            __Microsoft_AspNetCore_Mvc_TagHelpers_RenderAtEndOfFormTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper>();
            __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_RenderAtEndOfFormTagHelper);
            __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_6);
            __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_7);
            await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);

            if (!__tagHelperExecutionContext.Output.IsContentModified)
            {
                await __tagHelperExecutionContext.SetOutputContentAsync();
            }
            Write(__tagHelperExecutionContext.Output);
            __tagHelperExecutionContext = __tagHelperScopeManager.End();
            EndContext();
            BeginContext(7850, 22, true);
            WriteLiteral("\r\n                    ");
            EndContext();
            BeginContext(7872, 1019, false);
            __tagHelperExecutionContext = __tagHelperScopeManager.Begin("form", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "bce7c86d9be6ea5bbb41fc55919d1dc1d63e2f9728165", async() => {
                BeginContext(7909, 975, true);
                WriteLiteral(@"
                        <label for=""option-location-1""><input type=""checkbox"" id=""option-location-1"" name=""vehicle"" value="""" checked> Sydney, Australia</label><br>
                        <label for=""option-location-2""><input type=""checkbox"" id=""option-location-2"" name=""vehicle"" value=""""> New York, United States</label><br>
                        <label for=""option-location-3""><input type=""checkbox"" id=""option-location-3"" name=""vehicle"" value=""""> Tokyo, Japan</label><br>
                        <label for=""option-location-4""><input type=""checkbox"" id=""option-location-4"" name=""vehicle"" value=""""> Manila, Philippines</label><br>
                        <label for=""option-location-5""><input type=""checkbox"" id=""option-location-5"" name=""vehicle"" value=""""> Seoul, South Korea</label><br>
                        <label for=""option-location-6""><input type=""checkbox"" id=""option-location-6"" name=""vehicle"" value=""""> Western City, UK</label><br>
                    ");
                EndContext();
            }
                                                                        );
            __Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper>();
            __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper);
            __Microsoft_AspNetCore_Mvc_TagHelpers_RenderAtEndOfFormTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper>();
            __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_RenderAtEndOfFormTagHelper);
            __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_6);
            __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_8);
            await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);

            if (!__tagHelperExecutionContext.Output.IsContentModified)
            {
                await __tagHelperExecutionContext.SetOutputContentAsync();
            }
            Write(__tagHelperExecutionContext.Output);
            __tagHelperExecutionContext = __tagHelperScopeManager.End();
            EndContext();
            BeginContext(8891, 180, true);
            WriteLiteral("\r\n                </div>\r\n\r\n                <div class=\"sidebar-box bg-white p-4 ftco-animate\">\r\n                    <h3 class=\"heading-sidebar\">Job Type</h3>\r\n                    ");
            EndContext();
            BeginContext(9071, 961, false);
            __tagHelperExecutionContext = __tagHelperScopeManager.Begin("form", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "bce7c86d9be6ea5bbb41fc55919d1dc1d63e2f9731007", async() => {
                BeginContext(9108, 917, true);
                WriteLiteral(@"
                        <label for=""option-job-type-1""><input type=""checkbox"" id=""option-job-type-1"" name=""vehicle"" value="""" checked> Partime</label><br>
                        <label for=""option-job-type-2""><input type=""checkbox"" id=""option-job-type-2"" name=""vehicle"" value=""""> Fulltime</label><br>
                        <label for=""option-job-type-3""><input type=""checkbox"" id=""option-job-type-3"" name=""vehicle"" value=""""> Intership</label><br>
                        <label for=""option-job-type-4""><input type=""checkbox"" id=""option-job-type-4"" name=""vehicle"" value=""""> Temporary</label><br>
                        <label for=""option-job-type-5""><input type=""checkbox"" id=""option-job-type-5"" name=""vehicle"" value=""""> Freelance</label><br>
                        <label for=""option-job-type-6""><input type=""checkbox"" id=""option-job-type-6"" name=""vehicle"" value=""""> Fixed</label><br>
                    ");
                EndContext();
            }
                                                                        );
            __Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper>();
            __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper);
            __Microsoft_AspNetCore_Mvc_TagHelpers_RenderAtEndOfFormTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper>();
            __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_RenderAtEndOfFormTagHelper);
            __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_6);
            __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_8);
            await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);

            if (!__tagHelperExecutionContext.Output.IsContentModified)
            {
                await __tagHelperExecutionContext.SetOutputContentAsync();
            }
            Write(__tagHelperExecutionContext.Output);
            __tagHelperExecutionContext = __tagHelperScopeManager.End();
            EndContext();
            BeginContext(10032, 90, true);
            WriteLiteral("\r\n                </div>\r\n            </div>\r\n        </div>\r\n    </div>\r\n</section>\r\n\r\n\r\n");
            EndContext();
        }
Пример #4
0
        #pragma warning disable 1998
        public async override global::System.Threading.Tasks.Task ExecuteAsync()
        {
            BeginContext(69, 2, true);
            WriteLiteral("\r\n");
            EndContext();
            BeginContext(187, 2, true);
            WriteLiteral("\r\n");
            EndContext();
            BeginContext(239, 2, true);
            WriteLiteral("\r\n");
            EndContext();
#line 10 "C:\Users\iNexus\Documents\source\repos\HireMe\HireMe\Views\Home\Partials\_BannerPartial.cshtml"

            int contPostsToShow = 20;

            string searchStr = HttpContextAccessor.HttpContext.Request.Query["workerName"];


#line default
#line hidden
            BeginContext(368, 1235, true);
            WriteLiteral(@"<div class=""hero-wrap img"" style=""background-image: url(images/bg_1.jpg);"">
    <div class=""overlay""></div>
    <div class=""container"">
        <div class=""row d-md-flex no-gutters slider-text align-items-center justify-content-center"">
            <div class=""col-md-10 d-flex align-items-center ftco-animate"">
                <div class=""text text-center pt-5 mt-md-5"">
                    <p class=""mb-4"">Find Job, Employment, and Career Opportunities</p>
                    <h1 class=""mb-5"">The Eassiest Way to Get Your New Job</h1>
                    <div class=""ftco-counter ftco-no-pt ftco-no-pb"">
                        <div class=""row"">
                            <div class=""col-md-4 d-flex justify-content-center counter-wrap ftco-animate"">
                                <div class=""block-18"">
                                    <div class=""text d-flex"">
                                        <div class=""icon mr-2"">
                                            <span class=""flaticon-worldwi");
            WriteLiteral("de\"></span>\r\n                                        </div>\r\n                                        <div class=\"desc text-left\">\r\n                                            <strong class=\"number\" data-number=\"");
            EndContext();
            BeginContext(1604, 31, false);
#line 33 "C:\Users\iNexus\Documents\source\repos\HireMe\HireMe\Views\Home\Partials\_BannerPartial.cshtml"
            Write(BaseService.GetLocationsCount());

#line default
#line hidden
            EndContext();
            BeginContext(1635, 833, true);
            WriteLiteral(@""">0</strong>
                                            <span>Cities</span>
                                        </div>
                                    </div>
                                </div>
                            </div>
                            <div class=""col-md-4 d-flex justify-content-center counter-wrap ftco-animate"">
                                <div class=""block-18 text-center"">
                                    <div class=""text d-flex"">
                                        <div class=""icon mr-2"">
                                            <span class=""flaticon-visitor""></span>
                                        </div>
                                        <div class=""desc text-left"">
                                            <strong class=""number"" data-number=""");
            EndContext();
            BeginContext(2469, 26, false);
#line 46 "C:\Users\iNexus\Documents\source\repos\HireMe\HireMe\Views\Home\Partials\_BannerPartial.cshtml"
            Write(JobsService.GetJobsCount());

#line default
#line hidden
            EndContext();
            BeginContext(2495, 836, true);
            WriteLiteral(@""">0</strong>
                                            <span>Job offers</span>
                                        </div>
                                    </div>
                                </div>
                            </div>
                            <div class=""col-md-4 d-flex justify-content-center counter-wrap ftco-animate"">
                                <div class=""block-18 text-center"">
                                    <div class=""text d-flex"">
                                        <div class=""icon mr-2"">
                                            <span class=""flaticon-resume""></span>
                                        </div>
                                        <div class=""desc text-left"">
                                            <strong class=""number"" data-number=""");
            EndContext();
            BeginContext(3332, 40, false);
#line 59 "C:\Users\iNexus\Documents\source\repos\HireMe\HireMe\Views\Home\Partials\_BannerPartial.cshtml"
            Write(ContestantsService.GetContestantsCount());

#line default
#line hidden
            EndContext();
            BeginContext(3372, 1428, true);
            WriteLiteral(@""">0</strong>
                                            <span>Active Employees</span>
                                        </div>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                    <div class=""ftco-search my-md-5"">
                        <div class=""row"">
                            <div class=""col-md-12 nav-link-wrap"">
                                <div class=""nav nav-pills text-center"" id=""v-pills-tab"" role=""tablist"" aria-orientation=""vertical"">
                                    <a class=""nav-link active mr-md-1"" id=""v-pills-1-tab"" data-toggle=""pill"" href=""#v-pills-1"" role=""tab"" aria-controls=""v-pills-1"" aria-selected=""true"">Find a Job</a>

                                    <a class=""nav-link"" id=""v-pills-2-tab"" data-toggle=""pill"" href=""#v-pills-2"" role=""tab"" aria-controls=""v-pills-2"" aria-selected=""false"">Find a Candidate</a>

           ");
            WriteLiteral(@"                     </div>
                            </div>
                            <div class=""col-md-12 tab-wrap"">

                                <div class=""tab-content p-4"" id=""v-pills-tabContent"">

                                    <div class=""tab-pane fade show active"" id=""v-pills-1"" role=""tabpanel"" aria-labelledby=""v-pills-nextgen-tab"">
                                        ");
            EndContext();
            BeginContext(4800, 3623, false);
            __tagHelperExecutionContext = __tagHelperScopeManager.Begin("form", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "a6c66945790da3dfbd6bc4d1be405b33b2af1bf812609", async() => {
                BeginContext(4836, 1391, true);
                WriteLiteral(@"
                                            <div class=""row no-gutters"">
                                                <div class=""col-md mr-md-2"">
                                                    <div class=""form-group"">
                                                        <div class=""form-field"">
                                                            <div class=""icon""><span class=""icon-briefcase""></span></div>
                                                            <input type=""text"" class=""form-control"" placeholder=""eg. Garphic. Web Developer"">
                                                        </div>
                                                    </div>
                                                </div>
                                                <div class=""col-md mr-md-2"">
                                                    <div class=""form-group"">
                                                        <div class=""form-field"">
                           ");
                WriteLiteral(@"                                 <div class=""select-wrap"">
                                                                <div class=""icon""><span class=""ion-ios-arrow-down""></span></div>
                                                                <select name="""" id="""" class=""form-control"">
                                                                    ");
                EndContext();
                BeginContext(6227, 34, false);
                __tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "a6c66945790da3dfbd6bc4d1be405b33b2af1bf814456", async() => {
                    BeginContext(6244, 8, true);
                    WriteLiteral("Category");
                    EndContext();
                }
                                                                            );
                __Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper>();
                __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper);
                __Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper.Value = (string)__tagHelperAttribute_0.Value;
                __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
                await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
                if (!__tagHelperExecutionContext.Output.IsContentModified)
                {
                    await __tagHelperExecutionContext.SetOutputContentAsync();
                }
                Write(__tagHelperExecutionContext.Output);
                __tagHelperExecutionContext = __tagHelperScopeManager.End();
                EndContext();
                BeginContext(6261, 70, true);
                WriteLiteral("\r\n                                                                    ");
                EndContext();
                BeginContext(6331, 35, false);
                __tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "a6c66945790da3dfbd6bc4d1be405b33b2af1bf815992", async() => {
                    BeginContext(6348, 9, true);
                    WriteLiteral("Full Time");
                    EndContext();
                }
                                                                            );
                __Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper>();
                __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper);
                __Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper.Value = (string)__tagHelperAttribute_0.Value;
                __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
                await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
                if (!__tagHelperExecutionContext.Output.IsContentModified)
                {
                    await __tagHelperExecutionContext.SetOutputContentAsync();
                }
                Write(__tagHelperExecutionContext.Output);
                __tagHelperExecutionContext = __tagHelperScopeManager.End();
                EndContext();
                BeginContext(6366, 70, true);
                WriteLiteral("\r\n                                                                    ");
                EndContext();
                BeginContext(6436, 35, false);
                __tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "a6c66945790da3dfbd6bc4d1be405b33b2af1bf817529", async() => {
                    BeginContext(6453, 9, true);
                    WriteLiteral("Part Time");
                    EndContext();
                }
                                                                            );
                __Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper>();
                __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper);
                __Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper.Value = (string)__tagHelperAttribute_0.Value;
                __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
                await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
                if (!__tagHelperExecutionContext.Output.IsContentModified)
                {
                    await __tagHelperExecutionContext.SetOutputContentAsync();
                }
                Write(__tagHelperExecutionContext.Output);
                __tagHelperExecutionContext = __tagHelperScopeManager.End();
                EndContext();
                BeginContext(6471, 70, true);
                WriteLiteral("\r\n                                                                    ");
                EndContext();
                BeginContext(6541, 35, false);
                __tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "a6c66945790da3dfbd6bc4d1be405b33b2af1bf819066", async() => {
                    BeginContext(6558, 9, true);
                    WriteLiteral("Freelance");
                    EndContext();
                }
                                                                            );
                __Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper>();
                __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper);
                __Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper.Value = (string)__tagHelperAttribute_0.Value;
                __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
                await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
                if (!__tagHelperExecutionContext.Output.IsContentModified)
                {
                    await __tagHelperExecutionContext.SetOutputContentAsync();
                }
                Write(__tagHelperExecutionContext.Output);
                __tagHelperExecutionContext = __tagHelperScopeManager.End();
                EndContext();
                BeginContext(6576, 70, true);
                WriteLiteral("\r\n                                                                    ");
                EndContext();
                BeginContext(6646, 36, false);
                __tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "a6c66945790da3dfbd6bc4d1be405b33b2af1bf820603", async() => {
                    BeginContext(6663, 10, true);
                    WriteLiteral("Internship");
                    EndContext();
                }
                                                                            );
                __Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper>();
                __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper);
                __Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper.Value = (string)__tagHelperAttribute_0.Value;
                __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
                await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
                if (!__tagHelperExecutionContext.Output.IsContentModified)
                {
                    await __tagHelperExecutionContext.SetOutputContentAsync();
                }
                Write(__tagHelperExecutionContext.Output);
                __tagHelperExecutionContext = __tagHelperScopeManager.End();
                EndContext();
                BeginContext(6682, 70, true);
                WriteLiteral("\r\n                                                                    ");
                EndContext();
                BeginContext(6752, 35, false);
                __tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "a6c66945790da3dfbd6bc4d1be405b33b2af1bf822142", async() => {
                    BeginContext(6769, 9, true);
                    WriteLiteral("Temporary");
                    EndContext();
                }
                                                                            );
                __Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper>();
                __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper);
                __Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper.Value = (string)__tagHelperAttribute_0.Value;
                __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
                await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
                if (!__tagHelperExecutionContext.Output.IsContentModified)
                {
                    await __tagHelperExecutionContext.SetOutputContentAsync();
                }
                Write(__tagHelperExecutionContext.Output);
                __tagHelperExecutionContext = __tagHelperScopeManager.End();
                EndContext();
                BeginContext(6787, 1629, true);
                WriteLiteral(@"
                                                                </select>
                                                            </div>
                                                        </div>
                                                    </div>
                                                </div>
                                                <div class=""col-md mr-md-2"">
                                                    <div class=""form-group"">
                                                        <div class=""form-field"">
                                                            <div class=""icon""><span class=""icon-map-marker""></span></div>
                                                            <input type=""text"" class=""form-control"" placeholder=""Location"">
                                                        </div>
                                                    </div>
                                                </div>
                                 ");
                WriteLiteral(@"               <div class=""col-md"">
                                                    <div class=""form-group"">
                                                        <div class=""form-field"">
                                                            <button type=""submit"" class=""form-control btn btn-primary"">Search</button>
                                                        </div>
                                                    </div>
                                                </div>
                                            </div>
                                        ");
                EndContext();
            }
                                                                        );
            __Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper>();
            __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper);
            __Microsoft_AspNetCore_Mvc_TagHelpers_RenderAtEndOfFormTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper>();
            __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_RenderAtEndOfFormTagHelper);
            __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_1);
            __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_2);
            await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);

            if (!__tagHelperExecutionContext.Output.IsContentModified)
            {
                await __tagHelperExecutionContext.SetOutputContentAsync();
            }
            Write(__tagHelperExecutionContext.Output);
            __tagHelperExecutionContext = __tagHelperScopeManager.End();
            EndContext();
            BeginContext(8423, 226, true);
            WriteLiteral("\r\n                                    </div>\r\n\r\n                                    <div class=\"tab-pane fade\" id=\"v-pills-2\" role=\"tabpanel\" aria-labelledby=\"v-pills-performance-tab\">\r\n                                        ");
            EndContext();
            BeginContext(8649, 4096, false);
            __tagHelperExecutionContext = __tagHelperScopeManager.Begin("form", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "a6c66945790da3dfbd6bc4d1be405b33b2af1bf826774", async() => {
                BeginContext(8728, 669, true);
                WriteLiteral(@"
                                            <div class=""row"">
                                                <div class=""col-md"">
                                                    <div class=""form-group"">
                                                        <div class=""form-field"">
                                                            <div class=""icon""><span class=""icon-user""></span></div>
                                                            <input type=""text"" class=""form-control"" placeholder=""eg. Adam Scott"">
                                                        </div>
                                                    </div>

");
                EndContext();
#line 139 "C:\Users\iNexus\Documents\source\repos\HireMe\HireMe\Views\Home\Partials\_BannerPartial.cshtml"


                foreach (var item in ContestantsService.GetAllBySearch(contPostsToShow, searchStr))
                {
#line default
#line hidden
                    BeginContext(9655, 62, true);
                    WriteLiteral("                                                            <a");
                    EndContext();
                    BeginWriteAttribute("href", " href=\"", 9717, "\"", 9755, 2);
                    WriteAttributeValue("", 9724, "../Contestants/Details/", 9724, 23, true);
#line 143 "C:\Users\iNexus\Documents\source\repos\HireMe\HireMe\Views\Home\Partials\_BannerPartial.cshtml"
                    WriteAttributeValue("", 9747, item.Id, 9747, 8, false);

#line default
#line hidden
                    EndWriteAttribute();
                    BeginContext(9756, 7, true);
                    WriteLiteral("></a>\r\n");
                    EndContext();
#line 144 "C:\Users\iNexus\Documents\source\repos\HireMe\HireMe\Views\Home\Partials\_BannerPartial.cshtml"
                }


#line default
#line hidden
                BeginContext(9877, 680, true);
                WriteLiteral(@"                                                </div>
                                                <div class=""col-md"">
                                                    <div class=""form-group"">
                                                        <div class=""form-field"">
                                                            <div class=""select-wrap"">
                                                                <div class=""icon""><span class=""ion-ios-arrow-down""></span></div>
                                                                <select name="""" id="""" class=""form-control"">
                                                                    ");
                EndContext();
                BeginContext(10557, 34, false);
                __tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "a6c66945790da3dfbd6bc4d1be405b33b2af1bf830007", async() => {
                    BeginContext(10574, 8, true);
                    WriteLiteral("Category");
                    EndContext();
                }
                                                                            );
                __Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper>();
                __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper);
                __Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper.Value = (string)__tagHelperAttribute_0.Value;
                __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
                await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
                if (!__tagHelperExecutionContext.Output.IsContentModified)
                {
                    await __tagHelperExecutionContext.SetOutputContentAsync();
                }
                Write(__tagHelperExecutionContext.Output);
                __tagHelperExecutionContext = __tagHelperScopeManager.End();
                EndContext();
                BeginContext(10591, 70, true);
                WriteLiteral("\r\n                                                                    ");
                EndContext();
                BeginContext(10661, 35, false);
                __tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "a6c66945790da3dfbd6bc4d1be405b33b2af1bf831546", async() => {
                    BeginContext(10678, 9, true);
                    WriteLiteral("Full Time");
                    EndContext();
                }
                                                                            );
                __Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper>();
                __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper);
                __Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper.Value = (string)__tagHelperAttribute_0.Value;
                __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
                await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
                if (!__tagHelperExecutionContext.Output.IsContentModified)
                {
                    await __tagHelperExecutionContext.SetOutputContentAsync();
                }
                Write(__tagHelperExecutionContext.Output);
                __tagHelperExecutionContext = __tagHelperScopeManager.End();
                EndContext();
                BeginContext(10696, 70, true);
                WriteLiteral("\r\n                                                                    ");
                EndContext();
                BeginContext(10766, 35, false);
                __tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "a6c66945790da3dfbd6bc4d1be405b33b2af1bf833086", async() => {
                    BeginContext(10783, 9, true);
                    WriteLiteral("Part Time");
                    EndContext();
                }
                                                                            );
                __Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper>();
                __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper);
                __Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper.Value = (string)__tagHelperAttribute_0.Value;
                __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
                await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
                if (!__tagHelperExecutionContext.Output.IsContentModified)
                {
                    await __tagHelperExecutionContext.SetOutputContentAsync();
                }
                Write(__tagHelperExecutionContext.Output);
                __tagHelperExecutionContext = __tagHelperScopeManager.End();
                EndContext();
                BeginContext(10801, 70, true);
                WriteLiteral("\r\n                                                                    ");
                EndContext();
                BeginContext(10871, 35, false);
                __tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "a6c66945790da3dfbd6bc4d1be405b33b2af1bf834626", async() => {
                    BeginContext(10888, 9, true);
                    WriteLiteral("Freelance");
                    EndContext();
                }
                                                                            );
                __Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper>();
                __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper);
                __Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper.Value = (string)__tagHelperAttribute_0.Value;
                __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
                await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
                if (!__tagHelperExecutionContext.Output.IsContentModified)
                {
                    await __tagHelperExecutionContext.SetOutputContentAsync();
                }
                Write(__tagHelperExecutionContext.Output);
                __tagHelperExecutionContext = __tagHelperScopeManager.End();
                EndContext();
                BeginContext(10906, 70, true);
                WriteLiteral("\r\n                                                                    ");
                EndContext();
                BeginContext(10976, 36, false);
                __tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "a6c66945790da3dfbd6bc4d1be405b33b2af1bf836166", async() => {
                    BeginContext(10993, 10, true);
                    WriteLiteral("Internship");
                    EndContext();
                }
                                                                            );
                __Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper>();
                __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper);
                __Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper.Value = (string)__tagHelperAttribute_0.Value;
                __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
                await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
                if (!__tagHelperExecutionContext.Output.IsContentModified)
                {
                    await __tagHelperExecutionContext.SetOutputContentAsync();
                }
                Write(__tagHelperExecutionContext.Output);
                __tagHelperExecutionContext = __tagHelperScopeManager.End();
                EndContext();
                BeginContext(11012, 70, true);
                WriteLiteral("\r\n                                                                    ");
                EndContext();
                BeginContext(11082, 35, false);
                __tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "a6c66945790da3dfbd6bc4d1be405b33b2af1bf837708", async() => {
                    BeginContext(11099, 9, true);
                    WriteLiteral("Temporary");
                    EndContext();
                }
                                                                            );
                __Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper>();
                __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper);
                __Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper.Value = (string)__tagHelperAttribute_0.Value;
                __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
                await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
                if (!__tagHelperExecutionContext.Output.IsContentModified)
                {
                    await __tagHelperExecutionContext.SetOutputContentAsync();
                }
                Write(__tagHelperExecutionContext.Output);
                __tagHelperExecutionContext = __tagHelperScopeManager.End();
                EndContext();
                BeginContext(11117, 1621, true);
                WriteLiteral(@"
                                                                </select>
                                                            </div>
                                                        </div>
                                                    </div>
                                                </div>
                                                <div class=""col-md"">
                                                    <div class=""form-group"">
                                                        <div class=""form-field"">
                                                            <div class=""icon""><span class=""icon-map-marker""></span></div>
                                                            <input type=""text"" class=""form-control"" placeholder=""Location"">
                                                        </div>
                                                    </div>
                                                </div>
                                         ");
                WriteLiteral(@"       <div class=""col-md"">
                                                    <div class=""form-group"">
                                                        <div class=""form-field"">
                                                            <button type=""submit"" class=""form-control btn btn-primary"">Search</button>
                                                        </div>
                                                    </div>
                                                </div>
                                            </div>
                                        ");
                EndContext();
            }
                                                                        );
            __Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper>();
            __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper);
            __Microsoft_AspNetCore_Mvc_TagHelpers_RenderAtEndOfFormTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper>();
            __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_RenderAtEndOfFormTagHelper);
            __Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper.Controller = (string)__tagHelperAttribute_3.Value;
            __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_3);
            __Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper.Action = (string)__tagHelperAttribute_4.Value;
            __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_4);
            __Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper.Method = (string)__tagHelperAttribute_5.Value;
            __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_5);
            __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_2);
            await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);

            if (!__tagHelperExecutionContext.Output.IsContentModified)
            {
                await __tagHelperExecutionContext.SetOutputContentAsync();
            }
            Write(__tagHelperExecutionContext.Output);
            __tagHelperExecutionContext = __tagHelperScopeManager.End();
            EndContext();
            BeginContext(12745, 260, true);
            WriteLiteral(@"
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>");
            EndContext();
        }
Пример #5
0
        #pragma warning disable 1998
        public async override global::System.Threading.Tasks.Task ExecuteAsync()
        {
            BeginContext(35, 2, true);
            WriteLiteral("\r\n");
            EndContext();
            BeginContext(85, 2, true);
            WriteLiteral("\r\n");
            EndContext();
#line 5 "C:\Users\iNexus\Documents\source\repos\HireMe\HireMe\Views\Home\Partials\_CandidatesPartial.cshtml"

            int contestantsToShow = 10;

#line default
#line hidden
            BeginContext(127, 580, true);
            WriteLiteral(@"<section class=""ftco-section ftco-candidates bg-primary"">
    <div class=""container"">
        <div class=""row justify-content-center pb-3"">
            <div class=""col-md-10 heading-section heading-section-white text-center ftco-animate"">
                <span class=""subheading"">Candidates</span>
                <h2 class=""mb-4"">Latest Candidates</h2>
            </div>
        </div>
    </div>
    <div class=""container"">
        <div class=""row"">
            <div class=""col-md-12 ftco-animate"">
                <div class=""carousel-candidates owl-carousel"">

");
            EndContext();
#line 22 "C:\Users\iNexus\Documents\source\repos\HireMe\HireMe\Views\Home\Partials\_CandidatesPartial.cshtml"

            foreach (var item in ContestantsService.GetLastContestants(contestantsToShow))
            {
#line default
#line hidden
                BeginContext(862, 102, true);
                WriteLiteral("                            <div class=\"item\">\r\n                                                    <a");
                EndContext();
                BeginWriteAttribute("href", " href=\"", 964, "\"", 1002, 2);
                WriteAttributeValue("", 971, "../Contestants/Details/", 971, 23, true);
#line 26 "C:\Users\iNexus\Documents\source\repos\HireMe\HireMe\Views\Home\Partials\_CandidatesPartial.cshtml"
                WriteAttributeValue("", 994, item.Id, 994, 8, false);

#line default
#line hidden
                EndWriteAttribute();
                BeginContext(1003, 85, true);
                WriteLiteral(" class=\"team text-center\">\r\n                                                     <img");
                EndContext();
                BeginWriteAttribute("src", " src=\"", 1088, "\"", 1110, 1);
#line 27 "C:\Users\iNexus\Documents\source\repos\HireMe\HireMe\Views\Home\Partials\_CandidatesPartial.cshtml"
                WriteAttributeValue("", 1094, item.ProfilePic, 1094, 16, false);

#line default
#line hidden
                EndWriteAttribute();
                BeginContext(1111, 119, true);
                WriteLiteral(" width=\"60\" height=\"160\" class=\"rounded-circle float-right\"/>                                                      <h2>");
                EndContext();
                BeginContext(1231, 9, false);
#line 27 "C:\Users\iNexus\Documents\source\repos\HireMe\HireMe\Views\Home\Partials\_CandidatesPartial.cshtml"
                Write(item.Name);

#line default
#line hidden
                EndContext();
                BeginContext(1240, 83, true);
                WriteLiteral("</h2>\r\n                                                     <span class=\"position\">");
                EndContext();
                BeginContext(1324, 13, false);
#line 28 "C:\Users\iNexus\Documents\source\repos\HireMe\HireMe\Views\Home\Partials\_CandidatesPartial.cshtml"
                Write(item.Location);

#line default
#line hidden
                EndContext();
                BeginContext(1337, 103, true);
                WriteLiteral("</span>\r\n                                                    </a>\r\n                            </div>\r\n");
                EndContext();
#line 31 "C:\Users\iNexus\Documents\source\repos\HireMe\HireMe\Views\Home\Partials\_CandidatesPartial.cshtml"
            }


#line default
#line hidden
            BeginContext(1490, 84, true);
            WriteLiteral("                </div>\r\n            </div>\r\n        </div>\r\n    </div>\r\n</section>\r\n");
            EndContext();
        }