コード例 #1
0
ファイル: SectionFilesLogic.cs プロジェクト: ramyothman/RBM
 public bool Insert( int SectionFileId,  string SectionFileName,  string SectionFilePath,  int SectionId,  int SecurityAccessTypeId)
 {
     SectionFilesDAC sectionfilesComponent = new SectionFilesDAC();
     return sectionfilesComponent.InsertNewSectionFiles( SectionFileId,  SectionFileName,  SectionFilePath,  SectionId,  SecurityAccessTypeId);
 }
コード例 #2
0
ファイル: SectionFilesLogic.cs プロジェクト: ramyothman/RBM
 public bool Insert(SectionFiles sectionfiles)
 {
     SectionFilesDAC sectionfilesComponent = new SectionFilesDAC();
     return sectionfilesComponent.InsertNewSectionFiles( sectionfiles.SectionFileId,  sectionfiles.SectionFileName,  sectionfiles.SectionFilePath,  sectionfiles.SectionId,  sectionfiles.SecurityAccessTypeId);
 }