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