Пример #1
0
 public bool Insert(NotesModel entity)
 {
     return new DataAccess.DataAccess().ExecuteNonQuery("avz_notes_spInsertNotes", new {
         merchantId = entity.merchantId,
         screenName = entity.screenName,
         noteTypeId=entity.noteTypeId,
         contractId=entity.contractId,
         note=entity.note,
         workFlowId=entity.workFlowId,
         insertUserId= entity.InsertUserId
     });
 }
Пример #2
0
 public bool InsertTempNotes(NotesModel entity)
 {
     return notesRepository.InsertTempNotes(entity);
 }
Пример #3
0
 public bool Update(NotesModel entity)
 {
     throw new NotImplementedException();
 }
Пример #4
0
 public bool UpdateNotes(NotesModel objMod)
 {
     throw new NotImplementedException();
 }
Пример #5
0
 public bool Insert(NotesModel objMod)
 {
     return notesRepository.Insert(objMod);
 }