コード例 #1
0
ファイル: Service.cs プロジェクト: wpmyj/AndroidDemo
 public void UpdateRepair(Repair model)
 {
     try
     {
         using (var context = new BJContext())
         {
             context.Update <Repair>(model);
         }
     }
     catch (Exception exception)
     {
         throw exception;
     }
 }
コード例 #2
0
ファイル: Service.cs プロジェクト: wpmyj/AndroidDemo
 public void UpdateControler(Controler model)
 {
     try
     {
         using (var context = new BJContext())
         {
             context.Update <Controler>(model);
         }
     }
     catch (Exception exception)
     {
         throw exception;
     }
 }
コード例 #3
0
ファイル: Service.cs プロジェクト: wpmyj/AndroidDemo
 public void UpdateMonitorHistory(MonitorHistory model)
 {
     try
     {
         using (var context = new BJContext())
         {
             context.Update <MonitorHistory>(model);
         }
     }
     catch (Exception exception)
     {
         throw exception;
     }
 }