This is a fixed and light version of the public gist of MS Northwind for Oracle published by segilbet at https://gist.github.com/segilbert/5095533. It includes only the tables creation and the data seed, no views, procedures or functions.
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 CalculatorService : ICalculator | |
{ | |
Worker worker = new Worker(); | |
int callId = 0; | |
public double Add(double n1, double n2) | |
{ | |
callId++; | |
double result = n1 + n2; | |
Console.WriteLine("Call {2} : Received Add({0},{1})", n1, n2, callId); |
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
<!doctype html> | |
<html> | |
<head> | |
</head> | |
<body> | |
<canvas id="canvas" width="800" height="600"></canvas> | |
<script type="text/javascript"> | |
var ctx = document.getElementById('canvas').getContext('2d') |