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
<?php | |
use PhpCsFixer\Config; | |
use PhpCsFixer\Finder; | |
$rules = [ | |
'@PSR12' => true, | |
'array_indentation' => true, | |
'array_push' => true, | |
'array_syntax' => ['syntax' => 'short'], |
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
node_modules |
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
postgres |
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 GPScrum1.Model; | |
using System; | |
using System.Data; | |
using System.Linq; | |
using System.Windows.Forms; | |
namespace GPScrum1 | |
{ | |
public partial class AddMembrosControl : UserControl | |
{ | |
private int idProjeto; |
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 (var bd = new projetoscrumEntities1()) | |
// { | |
// projeto projeto = (from proj in bd.projeto | |
// where proj.idprojeto == IdProjeto | |
// select proj).FirstOrDefault(); | |
// return projeto; | |
// } |
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; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace GPScrum1 | |
{ | |
class Helpers | |
{ |
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
private int idProjeto; | |
public FrmProjeto(int idProjeto) | |
{ | |
InitializeComponent(); | |
abrirTelaMembros(); | |
//Seta o id do projeto selecionado do form FrmProjetos | |
this.idProjeto = idProjeto; | |
} |
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
private int idProjeto; | |
//FrmProjeto parent; | |
private string[] cargos = { "Scrum Master" , "Product Owner" , "Scrum Team" }; | |
public AddMembrosControl() | |
{ | |
InitializeComponent(); | |
txtNome.Focus(); | |
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 function __get($name) { | |
echo '---'.$name.'---'; | |
if ($name == 'arrVariations') { | |
//die($name); | |
return []; | |
} | |
return parent::__get($name); |
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
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; |
NewerOlder