Merge branch 'Feature/program-manager/move' of https://github.com/samsyntax24/OriginalGozareshgir into Feature/program-manager/move

This commit is contained in:
SamSys
2025-12-13 20:05:03 +03:30
2 changed files with 4 additions and 3 deletions

View File

@@ -60,12 +60,12 @@ public class GetSingleUserQueryHandler : IBaseQueryHandler<GetSingleUserQuery, G
}
else
{
return (OperationResult<GetSingleUserResponse>)OperationResult.NotFound("کاربر یافت نشد");
return OperationResult<GetSingleUserResponse>.NotFound("کاربر یافت نشد");
}
}
}
return (OperationResult<GetSingleUserResponse>)OperationResult.Failure("آی دی اکانت گزارشگیر پر نشده است");
return OperationResult<GetSingleUserResponse>.Failure("آی دی اکانت گزارشگیر پر نشده است");
}
}