public SiharaiTouroku_BL()
 {
     dpdl  = new D_Pay_DL();
     msdl  = new M_Staff_DL();
     mkdl  = new M_Kouza_DL();
     mvdl  = new M_Vendor_DL();
     mpdl  = new M_Payee_DL();
     dpddl = new D_PayDetail_DL();
     dppdl = new D_PayPlan_DL();
     mmdl  = new M_MultiPorpose_DL();
     mkzdl = new M_Kouza_DL();
 }
Beispiel #2
0
 public SiharaiNyuuryoku_BL()
 {
     dpdl   = new D_Pay_DL();
     mcdl   = new M_Control_DL();
     mcaldl = new M_Calendar_DL();
     msdl   = new M_Staff_DL();
     mmdl   = new M_MultiPorpose_DL();
     mkdl   = new M_Kouza_DL();
     mvdl   = new M_Vendor_DL();
     mpdl   = new M_Payee_DL();
     dpddl  = new D_PayDetail_DL();
     dppdl  = new D_PayPlan_DL();
     mscdl  = new M_StoreClose_DL();
     mkzdl  = new M_Kouza_DL();
 }
        /// <summary>
        /// 締処理済チェック 
        /// D_PayPlanに、支払締番号がセットされていれば、エラー
        /// </summary>
        /// <param name="No"></param>
        /// <param name="errno"></param>
        /// <returns></returns>
        public bool CheckPayPlanData(string No, out string errno)
        {
            D_PayPlan_DL dpd = new D_PayPlan_DL();
            DataTable    dt  = dpd.CheckPayPlanData(No);

            bool ret = false;

            errno = "";

            if (dt.Rows.Count > 0)
            {
                errno = dt.Rows[0]["errno"].ToString();
            }

            return(ret);
        }
Beispiel #4
0
 public SiharaiYoteiHyou_BL()
 {
     dpp_dl = new D_PayPlan_DL();
 }