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
[AttributeUsage(AttributeTargets.Property)] | |
public class UpperCaseAttribute : Attribute | |
{ | |
} | |
public static class AttributeProcessor | |
{ | |
public static void ApplyUpperCase(object obj) | |
{ |
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.IO; | |
using System.Security.Cryptography; | |
using System.Text; | |
using System.Threading.Tasks; | |
using iText.Kernel.Exceptions; | |
using iText.Kernel.Pdf; | |
using iText.Kernel.Pdf.Canvas.Draw; | |
using iText.Layout; |
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.IO; | |
using System.Text; | |
using iText.Kernel.Geom; | |
using iText.Kernel.Pdf; | |
using iText.Kernel.Pdf.Canvas.Draw; | |
using iText.Layout; | |
using iText.Layout.Element; | |
using iText.Layout.Properties; |
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
// Mask the field for the GDE file name input https://stackoverflow.com/a/56704775/7389293 | |
$('.cuitcuil-mask').mask('00-00000000-0', { | |
'translation': { | |
//'#': { pattern: /#/, fallback: '#', optional: false }, | |
}, | |
placeholder: "__-________-_" | |
}); |
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
<mat-card class="mb4"> | |
<mat-list> | |
<mat-list-item> | |
<span class="underline-and-strong">ERC</span>: | |
<span class="low-ranking">LR-1</span> • | |
<span class="low-ranking">LR-2</span> • | |
<span class="medium-low-ranking">MLR-1</span> • | |
<span class="medium-low-ranking border-bottom">MLR-2</span> • | |
<span class="medium-high-ranking">MHR-1</span> • | |
<span class="medium-high-ranking">MHR-2</span> • |
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
#!/bin/bash | |
# shellcheck disable=SC2002 | |
# shellcheck disable=SC2020 | |
# shellcheck disable=SC2086 | |
# shellcheck disable=SC2317 | |
# shellcheck disable=SC1073 | |
# shellcheck disable=SC1009 | |
# shellcheck disable=SC1072 |
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.Diagnostics; | |
using System.IO; | |
using System.Linq; | |
using System.Web.Mvc; | |
using iText.Barcodes; | |
using iText.IO.Font; | |
using iText.IO.Font.Constants; | |
using iText.IO.Image; | |
using iText.Kernel.Colors; |
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
// Configuration for netcore 8.0 | |
using EmployeeManagement.Models; | |
using EmployeeManagement.Security; | |
using Microsoft.AspNetCore.Authorization; | |
using Microsoft.AspNetCore.Identity; | |
using Microsoft.AspNetCore.Mvc.Authorization; | |
using Microsoft.EntityFrameworkCore; | |
using NLog; | |
using NLog.Web; |
NewerOlder