コード例 #1
0
ファイル: PrescriptionCdDataBLL.cs プロジェクト: ahmgeek/crm
 public static int update(PrescriptionCdData prescriptionCdData)
 {
     prescriptionCdData.CdDataId = PrescriptionCdDataDAL.Update(prescriptionCdData);
     return(prescriptionCdData.CdDataId);
 }
コード例 #2
0
ファイル: PrescriptionCdDataBLL.cs プロジェクト: ahmgeek/crm
 public static bool Delete(PrescriptionCdData prescriptionCdData)
 {
     return(PrescriptionCdDataDAL.Delete(prescriptionCdData.CdDataId));
 }
コード例 #3
0
ファイル: PrescriptionCdDataBLL.cs プロジェクト: ahmgeek/crm
 public static int Insert(PrescriptionCdData prescriptionCdData)
 {
     prescriptionCdData.CdDataId = PrescriptionCdDataDAL.Insert(prescriptionCdData);
     return(prescriptionCdData.CdDataId);
 }