示例#1
0
文件: comqr.cs 项目: Hydrologist/msnp
        public COMQR(PYTHAG pythag, CSROOT csroot, CDIV cdiv)
        {
            #region Set Dependencies

            this._pythag = pythag; this._csroot = csroot; this._cdiv = cdiv;

            #endregion
        }
示例#2
0
        public CSROOT(PYTHAG pythag)
        {
            #region Set Dependencies

            this._pythag = pythag;

            #endregion
        }
示例#3
0
        public CSROOT()
        {
            #region Dependencies (Initialization)

            PYTHAG pythag = new PYTHAG();

            #endregion

            #region Set Dependencies

            this._pythag = pythag;

            #endregion
        }
示例#4
0
文件: comqr.cs 项目: Hydrologist/msnp
        public COMQR()
        {
            #region Dependencies (Initialization)

            PYTHAG pythag = new PYTHAG();
            CDIV cdiv = new CDIV();
            CSROOT csroot = new CSROOT(pythag);

            #endregion

            #region Set Dependencies

            this._pythag = pythag; this._csroot = csroot; this._cdiv = cdiv;

            #endregion
        }
示例#5
0
文件: cg.cs 项目: Hydrologist/msnp
        public CG()
        {
            #region Dependencies (Initialization)

            CBAL cbal = new CBAL();
            PYTHAG pythag = new PYTHAG();
            CDIV cdiv = new CDIV();
            CBABK2 cbabk2 = new CBABK2();
            CORTH corth = new CORTH(pythag);
            CSROOT csroot = new CSROOT(pythag);
            COMQR comqr = new COMQR(pythag, csroot, cdiv);
            COMQR2 comqr2 = new COMQR2(pythag, csroot, cdiv);

            #endregion

            #region Set Dependencies

            this._cbal = cbal; this._corth = corth; this._comqr = comqr; this._comqr2 = comqr2; this._cbabk2 = cbabk2;

            #endregion
        }