public void InsertRepair(Repair model) { try { using (var context = new BJContext()) { context.Insert <Repair>(model); } } catch (Exception exception) { throw exception; } }
public void InsertControler(Controler model) { try { using (var context = new BJContext()) { context.Insert <Controler>(model); } } catch (Exception exception) { throw exception; } }
public void InsertMonitorHistory(MonitorHistory model) { try { using (var context = new BJContext()) { context.Insert <MonitorHistory>(model); } } catch (Exception exception) { throw exception; } }