This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @using Web.Widgets.Search.Mvc.Models.View; | |
| @model PagingData | |
| <ul class="pagination"> | |
| @if (Model.DisplayPrev) | |
| { | |
| <li><a class="prev-page-url" href="@Model.PrevUrl">Previous</a></li> | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using Microsoft.CodeAnalysis.CSharp.Scripting; | |
| using Microsoft.CodeAnalysis.Scripting; | |
| namespace CorePlayground | |
| { | |
| public class Album | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| angular v5 snippets | |
| angular files | |
| angular language service | |
| brackets pair colorizer | |
| material icon theme | |
| path intellisense | |
| tslint | |
| nuget package manager | |
| Debugger for chrome |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.ComponentModel.DataAnnotations.Schema; | |
| using System.Data; | |
| using System.Data.SqlClient; | |
| using System.Reflection; | |
| using System.Threading.Tasks; | |
| namespace Common.SqlServer.BulkOperations | |
| { |
OlderNewer