コード例 #1
0
ファイル: TalentServices.cs プロジェクト: densaw/ExampleCode
 public TalentNote AddTalentNote(TalentNote talentNote)
 {
     return _talentNoteRepository.Add(talentNote);
 }
コード例 #2
0
ファイル: TalentServices.cs プロジェクト: densaw/ExampleCode
 public void UpdateTalentNote(TalentNote talentNote)
 {
     _talentNoteRepository.Update(talentNote, talentNote.Id);
 }