La Paloma
Gran Vals
Capricho Arabe
body { | |
color: #222; | |
font: 14px Arial; | |
} | |
body a { | |
color: #3D5C9D; | |
text-decoration: none; | |
} |
using System; | |
using System.Data.Entity; | |
using System.Linq; | |
using System.Linq.Expressions; | |
using WebService.Persistencia.Exceptions; | |
namespace WebService.Persistencia { | |
// Implementação de IRepositorio utilizando a biblioteca Entity Framework | |
public abstract class EntityFrameworkRepositorio<T> : IRepositorio<T> where T : class { | |
protected DbContext db; |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="description" content="[add your bin description]" /> | |
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.min.js"></script> | |
<meta charset=utf-8 /> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
# This Source Code Form is subject to the terms of the Mozilla Public | |
# License, v. 2.0. If a copy of the MPL was not distributed with this | |
# file, You can obtain one at http://mozilla.org/MPL/2.0/. | |
# Create a build and development environment for Firefox. | |
FROM ubuntu:13.10 |
#!/bin/bash | |
# Tested on Mono 3.12.1 | |
USER_HOME=~ | |
NUGET_DIR=$USER_HOME/.nuget | |
NUGET_EXE_URL="https://nuget.org/nuget.exe" | |
NUGET_EXE_NAME=nuget.exe | |
NUGET_EXE_PATH=$NUGET_DIR/$NUGET_EXE_NAME |
#!/bin/sh | |
REPOSITORY=https://github.com/editorconfig/editorconfig-core-net.git | |
INSTALL_DIR=~/.editorconfig-core-net | |
REPOSITORY_DIR=$INSTALL_DIR/repository | |
APPLICATION_SRC_DIR=$REPOSITORY_DIR/src/EditorConfig.App | |
BUILD_CONFIGURATION=Release | |
echo "Cleaning up old versions with they exists" | |
rm -rf $INSTALL_DIR |
.expandable-image-container { | |
position: fixed; | |
top: 0; | |
right: 0; | |
height: 100%; | |
width: 100%; | |
background: rgba(25, 25, 25, 0.7); | |
} | |
.expandable-image-container img { |
module DapperFSharp | |
open System.Data | |
open System.Dynamic | |
open System.Collections.Generic | |
open Dapper | |
let dapperQuery<'Result> (query:string) (connection: IDbConnection) : 'Result seq = | |
connection.Query<'Result>(query) |