Exemple #1
0
 public Task AddBafuSurfSpotAsync(BafuSurfSpot bafuSurfSpot)
 {
     using var db = new SurfsUpDbContext();
     db.Add(bafuSurfSpot);
     return(db.SaveChangesAsync());
 }
Exemple #2
0
 public Task AddMswSurfSpotAsync(MswSurfSpot mswSurfSpot)
 {
     using var db = new SurfsUpDbContext();
     db.Add(mswSurfSpot);
     return(db.SaveChangesAsync());
 }