Changed the response message for get services API

This commit is contained in:
ashutosh.nehete 2025-09-19 14:22:14 +05:30
parent d38bc4752a
commit 009ac36e38

View File

@ -1877,7 +1877,7 @@ namespace Marco.Pms.Services.Service
} }
var response = _mapper.Map<List<ServiceMasterVM>>(services); var response = _mapper.Map<List<ServiceMasterVM>>(services);
return ApiResponse<object>.SuccessResponse(response, "Services has been deassigned to the project", 200); return ApiResponse<object>.SuccessResponse(response, "Successfully fetched the services for this project", 200);
} }
catch (DbUpdateException dbEx) catch (DbUpdateException dbEx)
{ {