コード例 #1
0
ファイル: ctrlDanhMuc.cs プロジェクト: chutinhha/private-hrm
        private void LoadDetailDanhMuc(string type)
        {
            try
            {
                var db = new DanhMucItemEntities();

                var list = db.GetDanhMucItemsByDanhMuc(type);

                sourceDanhMuc.DataSource = list;
            }
            catch (Exception ex)
            {
                Common.Methods.ShowError("#LoadDetailDanhMuc", ex);
            }
        }
コード例 #2
0
ファイル: ctrlDanhMuc.cs プロジェクト: chutinhha/private-hrm
        private void LoadDetailDanhMuc(string type)
        {
            try
            {

                var db = new DanhMucItemEntities();

                var list = db.GetDanhMucItemsByDanhMuc(type);

                sourceDanhMuc.DataSource = list;

            }
            catch (Exception ex)
            {
                Common.Methods.ShowError("#LoadDetailDanhMuc", ex);
            }
        }