コード例 #1
0
 public TLineUpMaxNoModel Insert(TLineUpMaxNoModel model)
 {
     return(db.Insert(model));
 }
コード例 #2
0
 public TOprateLogModel Insert(TOprateLogModel model)
 {
     return(db.Insert(model));
 }
コード例 #3
0
 public TLedWindowModel Insert(TLedWindowModel model)
 {
     return(db.Insert(model));
 }
コード例 #4
0
ファイル: TUnitDAL.cs プロジェクト: wuhaiying83/QueueSystem
 public TUnitModel Insert(TUnitModel model)
 {
     return(db.Insert(model));
 }
コード例 #5
0
 public TEvaluateModel Insert(TEvaluateModel model)
 {
     return(db.Insert(model));
 }
コード例 #6
0
ファイル: TCallDAL.cs プロジェクト: wuhaiying83/QueueSystem
 public TCallModel Insert(TCallModel model)
 {
     return(db.Insert(model));
 }
コード例 #7
0
 public TWindowBusinessModel Insert(TWindowBusinessModel model)
 {
     return(db.Insert(model));
 }
コード例 #8
0
 public TRegisterModel Insert(TRegisterModel model)
 {
     return(db.Insert(model));
 }
コード例 #9
0
 public TDictionaryModel Insert(TDictionaryModel model)
 {
     return(db.Insert(model));
 }
コード例 #10
0
 public TLedControllerModel Insert(TLedControllerModel model)
 {
     return(db.Insert(model));
 }
コード例 #11
0
 public TAppointmentModel Insert(TAppointmentModel model)
 {
     return(db.Insert(model));
 }
コード例 #12
0
 public TBusinessAttributeModel Insert(TBusinessAttributeModel model)
 {
     return(db.Insert(model));
 }
コード例 #13
0
 public TGetCardModel Insert(TGetCardModel model)
 {
     return(db.Insert(model));
 }
コード例 #14
0
 public TBusinessModel Insert(TBusinessModel model)
 {
     return(db.Insert(model));
 }
コード例 #15
0
ファイル: DALBase.cs プロジェクト: wizhwai/QueueSystem
 public override T Insert(T model)
 {
     model.ID     = this.GetMaxId();
     model.AreaNo = this.areaNo;
     return(db.Insert(model));
 }
コード例 #16
0
 public TQueueModel Insert(TQueueModel model)
 {
     return(db.Insert(model));
 }
コード例 #17
0
 public TWindowAreaModel Insert(TWindowAreaModel model)
 {
     return(db.Insert(model));
 }