Ejemplo n.º 1
0
        public bool T_Tesuuryou_Delete(T_Tesuuryou_Entity Tesuuryou_data)
        {
            Dictionary <string, string> dic = new Dictionary <string, string>();

            dic.Add("@OperatorCD", Tesuuryou_data.OperatorCD);

            return(InsertUpdateDeleteData(dic, "T_Tesuuryou_Delete"));
        }
Ejemplo n.º 2
0
        public DataTable PETC0308I_SELECT_MF(T_Tesuuryou_Entity tse)
        {
            Dictionary <string, string> dic = new Dictionary <string, string>();

            dic.Add("@opcd", tse.OperatorCD);

            return(SelectData(dic, "PETC0308I_SELECT"));
        }
 public bool PETC0302I_Insert(T_NyuukinMeisai_Entity NyuukinMeisai_data, T_Tesuuryou_Entity Tessuryou_data, L_Log_Entity log_data)
 {
     if (NyuukinMeisaiDL.T_NyuukinMeisai_Insert(NyuukinMeisai_data))
     {
         if (TessuryouDL.T_Tesuuryou_Insert(Tessuryou_data))
         {
             if (LogDL.L_Log_Insert(log_data))
             {
                 return(true);
             }
         }
     }
     return(false);
 }
        public bool T_NyuukinMeisai_T_Tesuuryou_Delete(T_NyuukinMeisai_Entity NyuukinMeisai_data, T_Tesuuryou_Entity Tessuryou_data, L_Log_Entity log_data)
        {
            NyuukinMeisaiDL.StartTransaction();

            if (NyuukinMeisaiDL.T_NyuukinMeisai_Delete(NyuukinMeisai_data))
            {
                TessuryouDL.Transaction = NyuukinMeisaiDL.Transaction;
                if (TessuryouDL.T_Tesuuryou_Delete(Tessuryou_data))
                {
                    LogDL.Transaction = NyuukinMeisaiDL.Transaction;
                    if (LogDL.L_Log_Insert(log_data))
                    {
                        NyuukinMeisaiDL.CommitTransaction();
                        return(true);
                    }
                }
            }
            return(false);
        }
 public DataTable PETC0302I_SELECT(T_Tesuuryou_Entity tse)
 {
     return(TessuryouDL.PETC0302I_SELECT(tse));
 }