Ejemplo n.º 1
0
        public async Task <ActionResult <CustomerSegmentResponse> > DeleteCustomerSegment(int buildingId, int SegmentId)
        {
            var rs = await _buildingService.DeleteCustomerSegment(buildingId, SegmentId);

            return(Ok(rs));
        }