コード例 #1
0
ファイル: TransPromotion.cs プロジェクト: naushard/EclipsePOS
        public void UpdatePromotionAmount()
        {
            SqlRelator sr = new SqlRelator();

            sr.Relate(this, "UpdateTransPromotionAmount");
        }
コード例 #2
0
ファイル: RetailStore.cs プロジェクト: naushard/EclipsePOS
        public void Load()
        {
            SqlRelator sr = new SqlRelator();

            sr.Relate(this, "Select");
        }
コード例 #3
0
ファイル: TransPromotion.cs プロジェクト: naushard/EclipsePOS
        public void UpdateState()
        {
            SqlRelator sr = new SqlRelator();

            sr.Relate(this, "UpdateTransPromotionState");
        }
コード例 #4
0
ファイル: Subscriber.cs プロジェクト: naushard/EclipsePOS
        public void Save()
        {
            SqlRelator sr = new SqlRelator();

            sr.Relate(this, "Save");
        }
コード例 #5
0
ファイル: Subscriber.cs プロジェクト: naushard/EclipsePOS
        public void Load()
        {
            SqlRelator sr = new SqlRelator();

            sr.Relate(this, "LoadBySubscriberName");
        }
コード例 #6
0
ファイル: TransTender.cs プロジェクト: naushard/EclipsePOS
        public void UpdateState()
        {
            SqlRelator sr = new SqlRelator();

            sr.Relate(this, "UpdateTransTenderState");
        }
コード例 #7
0
        public void LoadByEmployeeNo()
        {
            SqlRelator sr = new SqlRelator();

            sr.Relate(this, "SelectByEmployeeNo");
        }
コード例 #8
0
        public void LoadByKeyId()
        {
            SqlRelator sr = new SqlRelator();

            sr.Relate(this, "LoadSurchargeBySurchargeKey");
        }
コード例 #9
0
        public void LoadBySurchargeCode()
        {
            SqlRelator sr = new SqlRelator();

            sr.Relate(this, "LoadSurchargeBySurchargeCode");
        }
コード例 #10
0
        public void Load()
        {
            SqlRelator sr = new SqlRelator();

            sr.Relate(this, "LoadTransByTrans");
        }
コード例 #11
0
        public void UpdateCustomer()
        {
            SqlRelator sr = new SqlRelator();

            sr.Relate(this, "UpdateCustomer");
        }
コード例 #12
0
        public void UpdateStateAndType()
        {
            SqlRelator sr = new SqlRelator();

            sr.Relate(this, "UpdateTransStateAndType");
        }
コード例 #13
0
ファイル: TransItem.cs プロジェクト: naushard/EclipsePOS
        public void UpdateAmounts()
        {
            SqlRelator sr = new SqlRelator();

            sr.Relate(this, "UpdateTransItemAmounts");
        }
コード例 #14
0
ファイル: RetailStore.cs プロジェクト: naushard/EclipsePOS
        public void SaveByRetailStoreId()
        {
            SqlRelator sr = new SqlRelator();

            sr.Relate(this, "Save");
        }
コード例 #15
0
        public void Load()
        {
            SqlRelator sr = new SqlRelator();

            sr.Relate(this, "LoadPosTotal");
        }
コード例 #16
0
        public void Delete()
        {
            SqlRelator sr = new SqlRelator();

            sr.Relate(this, "Delete");
        }
コード例 #17
0
ファイル: CardMedia.cs プロジェクト: naushard/EclipsePOS
        public void LoadByMediaID()
        {
            SqlRelator sr = new SqlRelator();

            sr.Relate(this, "LoadMeidaByMediaID");
        }
コード例 #18
0
        public void LoadCurrencyCodeByPosKey()
        {
            SqlRelator sr = new SqlRelator();

            sr.Relate(this, "LoadCurrencyCodeByPosKey");
        }
コード例 #19
0
        public void LoadByConfigName()
        {
            SqlRelator sr = new SqlRelator();

            sr.Relate(this, "LoadPosConfigByConfigName");
        }
コード例 #20
0
        public void LoadByCurrencyCode()
        {
            SqlRelator sr = new SqlRelator();

            sr.Relate(this, "LoadByCurrencyCode");
        }
コード例 #21
0
ファイル: StockBalance.cs プロジェクト: naushard/EclipsePOS
        public void AddBalance()
        {
            SqlRelator sr = new SqlRelator();

            sr.Relate(this, "AddBalance");
        }
コード例 #22
0
        public void LoadByDepartmentId()
        {
            SqlRelator sr = new SqlRelator();

            sr.Relate(this, "LoadDepartmentByDepartmentId");
        }
コード例 #23
0
ファイル: Subscriber.cs プロジェクト: naushard/EclipsePOS
        public void Remove()
        {
            SqlRelator sr = new SqlRelator();

            sr.Relate(this, "Remove");
        }
コード例 #24
0
        public void DeleteByDepartmentId()
        {
            SqlRelator sr = new SqlRelator();

            sr.Relate(this, "DeleteDepartmentByDepartmentId");
        }
コード例 #25
0
        public void Add()
        {
            SqlRelator sr = new SqlRelator();

            sr.Relate(this, "Add");
        }
コード例 #26
0
ファイル: Organization.cs プロジェクト: naushard/EclipsePOS
		public DataSet LoadByOrganizationNo()
		{
			SqlRelator sr = new SqlRelator();
			sr.Relate(this, "Load");
			return resultSet;
		}