コード例 #1
0
        public Plan GetPlan(long planId)
        {
            var planExists = Plans.ContainsKey(planId);

            return(planExists ? Plans[planId] : null);
        }