Skip to content

Instantly share code, notes, and snippets.

View knorrus's full-sized avatar

Pavel Knorr knorrus

View GitHub Profile
@knorrus
knorrus / 0_reuse_code.js
Created March 6, 2014 10:26
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
using eChalk.Models.Implementations;
namespace eChalk.Repositories.Mappings
{
internal class UserMapping : AuditableClassMap<User>
{
public UserMapping()
{
Table("user");
Schema("public");
using eChalk.Repositories.Interfaces;
using eChalk.Services.Implementations;
using NSubstitute;
using NUnit.Framework;
namespace eChalk.Services.Tests
{
[TestFixture]
public class CreateUserTest
{