예제 #1
0
파일: Emprise.cs 프로젝트: CoolWirya/BS
        public bool Delete(int pCode)
        {
            JAEmpriseTable ActionTable = new JAEmpriseTable();

            ActionTable.Code = pCode;
            return(ActionTable.Delete());
        }
예제 #2
0
파일: Emprise.cs 프로젝트: CoolWirya/BS
        public bool Update()
        {
            JAEmpriseTable ActionTable = new JAEmpriseTable();

            ActionTable.SetValueProperty(this);
            return(ActionTable.Update());
        }
예제 #3
0
파일: Emprise.cs 프로젝트: CoolWirya/BS
        // Insert , Update , Delete
        #region BaseFunctions
        public int Insert()
        {
            JAEmpriseTable ActionTable = new JAEmpriseTable();

            ActionTable.SetValueProperty(this);
            Code = ActionTable.Insert();
            if (Code > 0)
            {
            }
            return(Code);
        }