コード例 #1
0
ファイル: LokalController.cs プロジェクト: annaendi/EmpTest
 public IActionResult Create(Lokal newLokal)
 {
     _context.Lokal.Add(newLokal);
     _context.SaveChanges();
     return(StatusCode(201, newLokal));
 }
コード例 #2
0
 public IActionResult Create(Promocja newPromocja)
 {
     _context.Promocja.Add(newPromocja);
     _context.SaveChanges();
     return(StatusCode(201, newPromocja));
 }
コード例 #3
0
 public IActionResult Create(Skladnik newSkladnik)
 {
     _context.Skladnik.Add(newSkladnik);
     _context.SaveChanges();
     return(StatusCode(201, newSkladnik));
 }