コード例 #1
0
 public PlantDataSet Post(PlantDataSet dataSet)
 {
     try
     {
         _context.DataSets.Add(dataSet);
         _context.SaveChanges();
         return(dataSet);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
コード例 #2
0
ファイル: DataSetController.cs プロジェクト: MattZK/iot18-lf1
 public PlantDataSet Post([FromBody] PlantDataSet dataSet)
 {
     return(_dataSetService.Create(dataSet));
 }
コード例 #3
0
ファイル: DataSetController.cs プロジェクト: MattZK/iot18-lf1
 public PlantDataSet Put([FromBody] PlantDataSet dataSet)
 {
     return(_dataSetService.Update(dataSet));
 }
コード例 #4
0
ファイル: DataSetService.cs プロジェクト: MattZK/iot18-lf1
 public PlantDataSet Update(PlantDataSet picture)
 {
     return(_dataSetRepository.Put(picture));
 }
コード例 #5
0
ファイル: DataSetService.cs プロジェクト: MattZK/iot18-lf1
 public PlantDataSet Create(PlantDataSet picture)
 {
     return(_dataSetRepository.Post(picture));
 }