public async Task <ActionResult <CustomerSegmentResponse> > DeleteCustomerSegment(int buildingId, int SegmentId) { var rs = await _buildingService.DeleteCustomerSegment(buildingId, SegmentId); return(Ok(rs)); }