private ControlGridAjaxData <Newsletter> GetNewsletters(ControlGridFormRequest options)
        {
            int totals;
            var records = newsletterService.GetRecords(options, out totals, x => x.RefId == null);

            return(new ControlGridAjaxData <Newsletter>(records, totals));
        }