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
import { Component } from '@angular/core'; | |
import '../css/styles.scss'; | |
@Component({ | |
selector: 'iatss-app', | |
templateUrl: './app.component.html' | |
}) | |
export class AppComponent { | |
} |
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; | |
/// <summary> | |
/// The exception is thrown when the requested aggregate is not found by the <see cref="IEventStore"/> implementation. | |
/// </summary> | |
public class AggregateNotFoundException : Exception | |
{ | |
/// <summary> | |
/// Initializes a new instance of the <see cref="AggregateNotFoundException"/> class. | |
/// </summary> |
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 NSpec; | |
using System; | |
namespace NSpecExecutionOrder | |
{ | |
abstract class parent_class : nspec // this can be either an abstract class, or just a class | |
{ | |
public const int indentSize = 3; | |
public static string order = "\n\n"; | |
public static int indent = 0; |
NewerOlder