private void ShiftTriggerEmailStartDate(Guid bulkEmailId, int daysCount)
        {
            var parameters = new KeyValuePair <string, object>[] {
                new KeyValuePair <string, object>("RecordId", bulkEmailId),
                new KeyValuePair <string, object>("DaysCount", daysCount)
            };

            MailingDbUtilities.ExecuteStoredProcedure(UserConnection, "tsp_ShiftTriggerEmailStartDate", parameters);
        }