public PmsResponseDto AddProperty([FromBody] AddPropertyRequestDto request) { if (request == null || request.Property == null) { throw new PmsException("Property can not be added."); } var response = new PmsResponseDto(); var Id = _iPmsLogic.AddProperty(request.Property); if (Id > 0) { response.ResponseStatus = PmsApiStatus.Success.ToString(); response.StatusDescription = "Record saved successfully."; response.ResponseObject = Id; } else { response.ResponseStatus = PmsApiStatus.Failure.ToString(); response.StatusDescription = "Operation failed.Please contact administrator."; } return(response); }