示例#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;
 }