Example #1
0
		public static CharacterHotkey Load(DataRow row) {
			CharacterHotkey key = new CharacterHotkey();
			if (key.LoadFromDatabase(row) == false) {
				return null;
			}

			return key;
		}
Example #2
0
        public static CharacterHotkey Load(DataRow row)
        {
            CharacterHotkey key = new CharacterHotkey();

            if (key.LoadFromDatabase(row) == false)
            {
                return(null);
            }

            return(key);
        }