public SuPageSectionTypeModel UpdatePageSectionType(SuPageSectionTypeModel suPageSectionTypeChanges)
        {
            var changedPageSectionType = context.DbPageSectionType.Attach(suPageSectionTypeChanges);

            changedPageSectionType.State = Microsoft.EntityFrameworkCore.EntityState.Modified;
            context.SaveChanges();
            return(suPageSectionTypeChanges);
        }
 public SuPageSectionTypeModel AddPageSectionType(SuPageSectionTypeModel suPageSectionType)
 {
     context.DbPageSectionType.Add(suPageSectionType);
     context.SaveChanges();
     return(suPageSectionType);
 }