public IEnumerable <ItemCategory> GetCategoryforList(string Category)
        {
            var cl1 = _ItemCategoryRepository.GetMany(cl => cl.CategoryName.ToLower().StartsWith(Category.ToString().ToLower()) && cl.itemCategoryStatus == "Active");

            return(cl1);
        }