Skip to content

Instantly share code, notes, and snippets.

View lucasemanuel's full-sized avatar
🙃
...aprendendo com os erros...

Lucas Emanuel lucasemanuel

🙃
...aprendendo com os erros...
View GitHub Profile
@lucasemanuel
lucasemanuel / api.php
Created June 20, 2018 14:19
api.php 20.06
<?php
use Illuminate\Http\Request;
/*
|--------------------------------------------------------------------------
| API Routes
|--------------------------------------------------------------------------
|
| Here is where you can register API routes for your application. These
package com.example.emanuel.aluno;
import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
import android.provider.BaseColumns;
public class DatabaseHelper extends SQLiteOpenHelper {
private static final int VERSION = 1;
public function __get($name) {
echo '---'.$name.'---';
if ($name == 'arrVariations') {
//die($name);
return [];
}
return parent::__get($name);
private int idProjeto;
//FrmProjeto parent;
private string[] cargos = { "Scrum Master" , "Product Owner" , "Scrum Team" };
public AddMembrosControl()
{
InitializeComponent();
txtNome.Focus();
private int idProjeto;
public FrmProjeto(int idProjeto)
{
InitializeComponent();
abrirTelaMembros();
//Seta o id do projeto selecionado do form FrmProjetos
this.idProjeto = idProjeto;
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GPScrum1
{
class Helpers
{
// using (var bd = new projetoscrumEntities1())
// {
// projeto projeto = (from proj in bd.projeto
// where proj.idprojeto == IdProjeto
// select proj).FirstOrDefault();
// return projeto;
// }
using GPScrum1.Model;
using System;
using System.Data;
using System.Linq;
using System.Windows.Forms;
namespace GPScrum1
{
public partial class AddMembrosControl : UserControl
{
private int idProjeto;
@lucasemanuel
lucasemanuel / .gitignore
Created February 24, 2021 17:23
Docker Laravel
postgres