public void GetAllFeatures_ReturnList()
        {
            List <Features> allFeatures = FeatureManager.GetAllFeatures(true);

            Assert.IsTrue(allFeatures.Count >= 1);
        }
        public JsonResult GetAllFeatures()
        {
            List <Features> allFeatures = FeatureManager.GetAllFeatures(true);

            return(Json(allFeatures, JsonRequestBehavior.AllowGet));
        }