コード例 #1
0
ファイル: HomeController.cs プロジェクト: wilgov22/sgf_beta
        public void GetMovementTypes()
        {
            MovementTypesModel mtm = new MovementTypesModel();
            using (SGFEntitiess mov = new SGFEntitiess())
            {
                mtm.MovTypes = mov.SGF_PROC_GET_MOVEMENT_TYPES().ToList();
            }

            Session["movementTypes"] = mtm;
        }