コード例 #1
0
ファイル: PermanentStructureBLL.cs プロジェクト: abigabaw/wis
        /// <summary>
        /// To Get Occupant status
        /// </summary>
        /// <returns></returns>
        public PermanentStructureList GetOccupantstatus()
        {
            PermanentStructureDAL DALobj = new PermanentStructureDAL();

            try
            {
                return(DALobj.GetOccupantstatus());
            }
            catch (Exception erromsg)
            {
                throw (erromsg);
            }
            finally
            {
                DALobj = null;
            }
        }