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
<div class="center" *ngIf="!processingUpload && job.currentStage == 1"> | |
<file-drop headertext="Drop scrape database here" (onFileDrop)="uploadFile($event)"> | |
</file-drop> | |
</div> |
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
"CoreBDD Fixture": { | |
"prefix": "fix", | |
"body": [ | |
"[CollectionDefinition(\"CoreBDD\")]", | |
" public class Collection : ICollectionFixture<GenerateSpecsFixture> { }", | |
" public class GenerateSpecsFixture : IDisposable", | |
" {", | |
" public void Dispose()", | |
" {", | |
" GenerateSpecs.OutputFeatureSpecs(this.GetType().Assembly.Location, @\"..\\..\\..\\Specs\\\");", |
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
public class UseTenantAttribute : TypeFilterAttribute | |
{ | |
public UseTenantAttribute() : base(typeof(UseTenantFilter)) | |
{ | |
} | |
private class UseTenantFilter : IActionFilter | |
{ | |
readonly AppTenant _tenant; | |
public UseTenantFilter(ITenant<AppTenant> tenant) |