login: oracle@lilylee.com passwword:Or@cl3Dev
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
[{"id":"ID001","name":"Ricarth","lastName":"Lima","balance":113.0},{"id":"ID002","name":"Ana","lastName":"Silva","balance":250.0},{"id":"ID003","name":"Bruno","lastName":"Santos","balance":75.0},{"id":"ID004","name":"Carla","lastName":"Oliveira","balance":500.0},{"id":"ID005","name":"Daniel","lastName":"Ferreira","balance":180.0},{"id":"ID006","name":"Elisa","lastName":"Costa","balance":320.0},{"id":"ID007","name":"Fábio","lastName":"Pereira","balance":60.0},{"id":"ID008","name":"Gabriela","lastName":"Rodrigues","balance":200.0},{"id":"ID009","name":"Henrique","lastName":"Martins","balance":450.0},{"id":"ID010","name":"Isabela","lastName":"Almeida","balance":210.0},{"id":"ID555","name":"Haley","lastName":"Chirívia","balance":8001.0}] |
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
-- ALTER TABLE Cars drop FK_CARS_DRIVERS; | |
-- ALTER TABLE Drivers drop FK_DRIVERS_CARS; | |
-- ALTER TABLE Tickets drop PK_TicketId; | |
-- ALTER TABLE Tickets drop FK_TicketDriver; | |
-- ALTER TABLE Tickets drop FK_TicketCar; | |
-- drop table Cars; | |
-- DROP TABLE Drivers; | |
-- DROP TABLE Tickets; |
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 Microsoft.VisualStudio.TestTools.UnitTesting; | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
namespace Solidcon.GRC.Web.Tests.Base | |
{ | |
[TestClass] | |
public class AtendimentoTest | |
{ |
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
$(function() { | |
// | |
const geraTabela = function(lista, classes) { | |
// | |
const table = $('<table></table>').addClass(classes).appendTo($('<div>').addClass('table-responsive')); | |
const thead = $('<thead>').appendTo(table); | |
var linhaHead = $('<tr>'); | |
if (lista.length === 0) { | |
$('<th>').html('Descrição').appendTo(linhaHead); | |
linhaHead.appendTo(thead); |
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
<html> | |
<head> | |
<script type="text/javascript" src="http://canvg.googlecode.com/svn/trunk/rgbcolor.js"></script> | |
<script type="text/javascript" src="http://canvg.googlecode.com/svn/trunk/canvg.js"></script> | |
<script> | |
function getImgData(chartContainer) { | |
var chartArea = chartContainer.getElementsByTagName('iframe')[0]. | |
contentDocument.getElementById('chartArea'); | |
var svg = chartArea.innerHTML; | |
var doc = chartContainer.ownerDocument; |
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
@model LoginClaims.Controllers.LoginViewModel | |
@{ | |
ViewBag.Title = "Login"; | |
} | |
<h2>Login</h2> | |
<p>@ViewBag.erro</p> | |
<form action="" method="POST"> |
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 string GetSpace() | |
{ | |
DriveInfo[] allDrives = DriveInfo.GetDrives(); | |
var sb = new StringBuilder(); | |
foreach (DriveInfo d in allDrives) | |
{ | |
sb.AppendLine("Drive " + d.Name + "<br>"); |
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
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:tools="http://schemas.android.com/tools" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:orientation="vertical" | |
android:paddingBottom="@dimen/activity_vertical_margin" | |
android:paddingLeft="@dimen/activity_horizontal_margin" | |
android:paddingRight="@dimen/activity_horizontal_margin" | |
android:paddingTop="@dimen/activity_vertical_margin" | |
tools:context=".MainActivity"> |
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.ComponentModel.DataAnnotations; | |
using System.ComponentModel.DataAnnotations.Schema; | |
using System.Data.Entity; | |
using System.Linq; | |
using static System.Console; | |
namespace TesteDeContexto | |
{ | |
class Program | |
{ | |
static void Main(string[] args) |
NewerOlder