Exemplo n.º 1
0
 public ProjectManager(FundMeUpDbContext db)
 {
     this.db = db;
 }
 public BackerManager(FundMeUpDbContext _db)
 {
     db = _db;
 }
 public RewardManager(FundMeUpDbContext db)
 {
     this.db = db;
 }
 public BackerProjectManager(FundMeUpDbContext db)
 {
     _db = db;
 }
Exemplo n.º 5
0
        static void Main()
        {
            var dbcontext = new FundMeUpDbContext();

            dbcontext.Database.EnsureCreated();
        }