public JsonResultEntity Create([FromBody] PlaceSubCategoryEntity placesubcategoryEntity)
        {
            PlaceSubCategoryBL placesubcategoryBL = new PlaceSubCategoryBL();
            JsonResultEntity response = new JsonResultEntity();

            try
            {
                var result = placesubcategoryBL.Create(placesubcategoryEntity);

                if (result.HasWarning())
                {
                    response.Message = String.Join(",", result.Warning);
                    return response;
                }

                response.Success = true;
                response.Data = result.Value;
            }
            catch (Exception ex)
            {
                response.Message = ex.Message;
                LoggerHelper.Error(ex);
            }

            return response;
        }
        public JsonResultEntity Delete(int id)
        {
            var placesubcategoryBL = new PlaceSubCategoryBL();
            JsonResultEntity response = new JsonResultEntity();
            try
            {
                var result = placesubcategoryBL.DeleteById(id);
                if (result.HasWarning())
                {
                    response.Message = String.Join(",", result.Warning);
                    return response;
                }

                response.Success = true;
                response.Data = result.Value;
            }
            catch (Exception e)
            {
                response.Message = e.Message;
                LoggerHelper.Error(e);
            }
            return response;
        }
        public override JsonResultEntity Get([FromBody] DBParamEntity dbParamEntity)
        {
            PlaceSubCategoryBL placesubcategoryBL = new PlaceSubCategoryBL();
            JsonResultEntity response = new JsonResultEntity();

            try
            {
                var result = placesubcategoryBL.GetAll(dbParamEntity);

                if (result.HasWarning())
                {
                    response.Message = String.Join(",", result.Warning);
                    return response;
                }
				
                var dataFound = placesubcategoryBL.GetTotalRows(dbParamEntity);
                var totalPages = Convert.ToInt32(Math.Ceiling(dataFound.Value / Convert.ToDouble(dbParamEntity.Limit)));

                response.Success = true;
                response.Data = result.Value;
                response.MetaInfo = new MetaInfoEntity
                {
                    DataFound = dataFound.Value,
                    DataPerPage = dbParamEntity.Limit,
                    Page = dbParamEntity.Page,
                    TotalPages = totalPages == 0 ? 1 : totalPages
                };				
            }
            catch (Exception ex)
            {
                response.Message = ex.Message;
                LoggerHelper.Error(ex);
            }

            return response;            
        }