public JsonResultEntity Create([FromBody] PlaceLocationEntity placelocationEntity)
        {
            PlaceLocationBL  placelocationBL = new PlaceLocationBL();
            JsonResultEntity response        = new JsonResultEntity();

            try
            {
                var result = placelocationBL.Create(placelocationEntity);

                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 placelocationBL       = new PlaceLocationBL();
            JsonResultEntity response = new JsonResultEntity();

            try
            {
                var result = placelocationBL.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)
        {
            PlaceLocationBL  placelocationBL = new PlaceLocationBL();
            JsonResultEntity response        = new JsonResultEntity();

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

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

                var dataFound  = placelocationBL.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);
        }