/// <summary>
        /// LoadForDropDownListByLoginIdAndAddItem
        /// </summary>
        /// <param name="loginId"></param>
        /// <param name="teamProjectTimeId"></param>
        /// <param name="templateName"></param>
        /// <returns></returns>
        public DataSet LoadForDropDownListByLoginIdAndAddItem(int loginId, int teamProjectTimeId, string templateName)
        {
            // Create structure
            DestroyTableStructure();
            CreateTableStructureForDropDownList();

            // Insert extra template
            InsertForDropDownList(teamProjectTimeId, templateName);

            // Load templates
            TeamProjectTime2Gateway teamProjectTime2Gateway = new TeamProjectTime2Gateway(Data);
            teamProjectTime2Gateway.ClearBeforeFill = false;
            teamProjectTime2Gateway.LoadForDropDownListByLoginId(loginId);
            teamProjectTime2Gateway.ClearBeforeFill = true;

            // Return DataSet
            return Data;
        }