예제 #1
0
 static void Main()
 {
     using (BCDContext ent = new BCDContext())
     {
         ent.Database.CreateIfNotExists();
     }
     Application.EnableVisualStyles();
     Application.SetCompatibleTextRenderingDefault(false);
     Application.Run(new frmAnasayfa());
 }
예제 #2
0
 public ContaCadastradaRepository(BCDContext context)
 {
     _context = context;
 }
예제 #3
0
 public RepositoryGeneric(BCDContext context)
 {
     _context = context;
 }
예제 #4
0
 public HistoricosContasRepository(BCDContext context)
 {
     _context = context;
 }
예제 #5
0
 public PessoaRepository(BCDContext context)
 {
     _context = context;
 }
예제 #6
0
 public ContaRepository(BCDContext context)
 {
     _context = context;
 }
예제 #7
0
 public EnderecoRepository(BCDContext context)
 {
     _context = context;
 }