CEDTS_Instructions ICedts_NoticeRepository.GetInstructionsInfo()
        {
            var item = db.CEDTS_Instructions.FirstOrDefault();

            if (item == null)
            {
                CEDTS_Instructions instrucion = new CEDTS_Instructions();
                instrucion.Content        = string.Empty;
                instrucion.InstructionsID = 1;
                db.AddToCEDTS_Instructions(instrucion);
                db.SaveChanges();
                item = instrucion;
            }
            return(item);
        }